_table = 'shop_clock'; $this->_primary = 'id'; $this->_fields = [ "id", // int unsigned NOT NULL AUTO_INCREMENT, "shop_id", // int NOT NULL COMMENT '商店id', "uid", // int NOT NULL COMMENT '员工id', "time", // vint DEFAULT NULL COMMENT '打卡时间', "createTime", // int DEFAULT NULL COMMENT '创建时间', ]; $this->_readonly = ['id']; $this->_create_autofill = [ 'createTime' => time() ]; parent::__construct($serviceDB); } }