www.maiwd.cn // +---------------------------------------------------------------------- namespace app\api\model\wdsxh; /** * Class UserWechat * Desc 微信表模型 * Create on 2024/3/7 10:11 * Create by wangyafang */ class UserWechat extends Base { // 表名 protected $name = 'wdsxh_user_wechat'; // 自动写入时间戳字段 protected $autoWriteTimestamp = true; // 定义时间戳字段名 protected $createTime = 'createtime'; protected $updateTime = false; protected $deleteTime = false; protected $type = [ 'join_time' => 'timestamp:Y-m-d', ]; }