WechatOfficialAccountMaterialSendStatistics.php 513 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Hardy
  5. * Date: 2020/7/16
  6. * Time: 17:27
  7. */
  8. namespace App\Modules\WechatMaterial\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. class WechatOfficialAccountMaterialSendStatistics extends Model
  11. {
  12. protected $table = 'wechat_official_account_material_send_statistics';
  13. protected $connection = 'api_mysql';
  14. protected $fillable = ['id','batch_id', 'appid','wechat_material_id', 'first_day_material_uv', 'first_day_url_uv', 'created_at', 'updated_at'];
  15. }