www.maiwd.cn // +---------------------------------------------------------------------- namespace app\admin\model\wdsxh\mall; use think\Model; use traits\model\SoftDelete; class OrderRefundLog extends Model { use SoftDelete; // 表名 protected $name = 'wdsxh_mall_order_refund_log'; // 自动写入时间戳字段 protected $autoWriteTimestamp = 'integer'; // 定义时间戳字段名 protected $createTime = 'createtime'; protected $updateTime = 'updatetime'; }