科目信息

This commit is contained in:
hjc
2019-12-11 22:22:35 +08:00
parent ed643abfe5
commit 4e63bbd12b
16 changed files with 607 additions and 3 deletions
+24
View File
@@ -626,3 +626,27 @@ INSERT INTO `sys_user_role` VALUES ('12', '17');
INSERT INTO `sys_user_role` VALUES ('8', '18');
INSERT INTO `sys_user_role` VALUES ('10', '18');
INSERT INTO `sys_user_role` VALUES ('12', '18');
-- ----------------------------
-- Table structure for sys_class_item
-- ----------------------------
CREATE TABLE `sys_class_item` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`create_date` datetime DEFAULT NULL,
`item_name` varchar(255) DEFAULT NULL,
`item_type` smallint(6) DEFAULT NULL,
`remark` varchar(255) DEFAULT NULL,
`status` tinyint(4) DEFAULT NULL,
`create_by` bigint(20) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FKscjv9528cflikft0lwnwcujv0` (`create_by`),
CONSTRAINT `FKscjv9528cflikft0lwnwcujv0` FOREIGN KEY (`create_by`) REFERENCES `sys_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of sys_class_item
-- ----------------------------
INSERT INTO `sys_user_role` VALUES (1, '2019-12-11 21:12:20','食品支出',1,'',1,1);
INSERT INTO `sys_user_role` VALUES (2, '2019-12-11 21:12:20','食品收入',1,'',1,1);