17 lines
496 B
PHP
17 lines
496 B
PHP
<?php
|
|
|
|
namespace App\Models\Server;
|
|
|
|
use App\Models\Live\Anchor;
|
|
use App\Models\Live\Viewer;
|
|
use App\Models\Server\MerchantFollow;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class MerchantAccount extends Model
|
|
{
|
|
protected $fillable = ['mobile', 'password', 'openid', 'type', 'remark', 'created_at', 'updated_at', 'qr_code', 'share_icon', 'share_title', 'share_subtitle'];
|
|
|
|
//服务列表
|
|
public const EARNINGSERVICE = ['service', 'activity', 'course', 'consult', 'evaluate', 'shop'];
|
|
}
|