提交
This commit is contained in:
parent
2a5312a4d8
commit
fd8236ddb9
@ -36,6 +36,11 @@
|
||||
<groupId>org.springblade</groupId>
|
||||
<artifactId>blade-zhaocai-api</artifactId>
|
||||
</dependency>
|
||||
<!-- 系统服务api,用于Feign调用blade-system -->
|
||||
<dependency>
|
||||
<groupId>org.springblade</groupId>
|
||||
<artifactId>blade-system-api</artifactId>
|
||||
</dependency>
|
||||
<!-- 测试依赖 -->
|
||||
<dependency>
|
||||
<groupId>org.springblade</groupId>
|
||||
|
||||
@ -12,7 +12,13 @@ CREATE TABLE `zc_bill_code` (
|
||||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||||
`bill_code` varchar(64) NOT NULL COMMENT '单据号',
|
||||
`bill_type` varchar(64) DEFAULT NULL COMMENT '单据类型',
|
||||
`status` int(2) DEFAULT '1' COMMENT '状态',
|
||||
`create_user` bigint(20) DEFAULT NULL COMMENT '创建人',
|
||||
`create_dept` bigint(20) DEFAULT NULL COMMENT '创建部门',
|
||||
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
||||
`update_user` bigint(20) DEFAULT NULL COMMENT '更新人',
|
||||
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
||||
`is_deleted` int(2) DEFAULT '0' COMMENT '是否已删除',
|
||||
PRIMARY KEY (`id`) USING BTREE,
|
||||
UNIQUE KEY `uk_bill_code` (`bill_code`) USING BTREE,
|
||||
KEY `idx_bill_type` (`bill_type`) USING BTREE
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user