_table = 'holders_record'; $this->_primary = 'id'; $this->_fields = [ "id", // int unsigned NOT NULL AUTO_INCREMENT, "hol_id",// int NOT NULL COMMENT '股东id', "en_id",// int NOT NULL, 'number', // decimal(10,2) NOT NULL COMMENT '变动数量', 'before',// decimal(10,2) NOT NULL, 'after',// decimal(10,2) NOT NULL COMMENT '变动后', 'pm',// tinyint NOT NULL COMMENT '0减少1增加', 'type',// tinyint NOT NULL COMMENT '变动类型1原始股份2分红股份', 'remarks',// text COLLATE utf8mb4_general_ci COMMENT '备注', 'createTime',// int NOT NULL COMMENT '时间', ]; $this->_readonly = ['id']; $this->_create_autofill = [ 'createTime' => time() ]; parent::__construct($serviceDB); } }