_table = 'customer_card_num'; $this->_primary = 'id'; $this->_fields = [ 'id', //int unsigned NOT NULL AUTO_INCREMENT, 'customer_card',// int NOT NULL COMMENT '持有优惠卡id', 'enterprise_id',// int NOT NULL, 'customer_id',// int NOT NULL COMMENT '客户id', 'project_id',// int NOT NULL, 'number',// int NOT NULL, 'createTime',// int NOT NULL, ]; $this->_readonly = ['id']; $this->_create_autofill = [ 'createTime' => time() ]; parent::__construct($serviceDB); } }