www.maiwd.cn // +---------------------------------------------------------------------- /** * Class Pay * Desc 会员缴费记录模型 * Create on 2024/3/15 14:33 * Create by wangyafang */ namespace app\api\model\wdsxh\member; use think\Model; class Pay extends Model { // 表名 protected $name = 'wdsxh_member_pay'; protected $type = [ 'status' => 'integer', 'score' => 'float', 'pay_time' => 'timestamp:Y-m-d H:i:s', ]; // 自动写入时间戳字段 protected $autoWriteTimestamp = true; // 定义时间戳字段名 protected $createTime = 'createtime'; protected $updateTime = false; protected $deleteTime = false; }