www.maiwd.cn // +---------------------------------------------------------------------- /** * Class Demand * Desc 需求反馈 * Create on 2024/3/13 15:33 * Create by @小趴菜 */ namespace app\api\model\wdsxh; use think\Model; use traits\model\SoftDelete; class Demand extends Model { use SoftDelete; // 表名 protected $name = 'wdsxh_demand'; // 自动写入时间戳字段 protected $autoWriteTimestamp = 'integer'; // 定义时间戳字段名 protected $createTime = 'createtime'; protected $updateTime = 'updatetime'; protected $deleteTime = 'deletetime'; }