_table = 'customer_card'; $this->_primary = 'id'; $this->_fields = [ "id",//int unsigned NOT NULL AUTO_INCREMENT, "customer_id",// int NOT NULL, "enterprise_id",// int NOT NULL, "card_id", // int NOT NULL, "status", // tinyint NOT NULL DEFAULT '1' COMMENT '0使用完1正常', "createTime",// int NOT NULL, ]; $this->_readonly = ['id']; $this->_create_autofill = [ 'createTime' => time() ]; parent::__construct($serviceDB); } }