Miniprogram.php 472 B

1234567891011121314151617181920
  1. <?php
  2. namespace Modules\Manage\Models;
  3. class Miniprogram extends BaseModel
  4. {
  5. protected string $sortField = 'id';
  6. // 排序规则
  7. protected bool $sortDesc = true;
  8. protected $table = 'miniprogram';
  9. protected $fillable = [
  10. 'id', 'name', 'company', 'type', 'appid', 'appsecret',"pay_merchant_id","pay_merchant_info", 'status', 'remark', 'play_name','created_at', 'updated_at'
  11. ];
  12. protected $casts = ['pay_merchant_info' =>'array'];
  13. }