Files
2026-03-17 09:56:06 +08:00

41 lines
524 B
PHP

<?php
namespace app\admin\model\wdsxh\points;
use think\Model;
class Express extends Model
{
// 表名
protected $name = 'wdsxh_points_express';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'integer';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = false;
// 追加属性
protected $append = [
];
}