qinzexin 118799a80e 后台及api接口优化
主理人后天管理表生成
主理人活动管理
主理人订单管理(进行中)
2025-06-11 18:11:15 +08:00

45 lines
687 B
PHP

<?php
namespace app\manystore\model\user\withdrawal;
use think\Model;
use traits\model\SoftDelete;
class Userwithdrawal extends Model
{
use SoftDelete;
// 表名
protected $name = 'user_withdrawal';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = 'deletetime';
// 追加属性
protected $append = [
];
public function user()
{
return $this->belongsTo('app\manystore\model\User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
}
}