<?php
namespace app\warehouse\model;
use think\Model;
use think\Db;
class Directtype extends Model
{
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
}