You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2.扫码单据和业务单据添加审核时间字段 ----- 添加数据sql脚本 ----- -- 扫码单据表添加审核时间字段 ALTER TABLE `spms`.`io_order` ADD COLUMN `auditTime` datetime NULL COMMENT '审核时间' AFTER `updateTime`; -- 刷写审核时间字段 update io_order set auditTime = updateTime; -- 业务单据表添加审核时间字段 ALTER TABLE `spms`.`stock_order` ADD COLUMN `auditTime` datetime NULL COMMENT '审核时间' AFTER `updateTime`; -- 刷写审核时间字段 update stock_order set auditTime = updateTime; |
3 years ago | |
---|---|---|
api-admin | 3 years ago | |
api-common | 3 years ago | |
scripts | 3 years ago | |
.gitignore | 4 years ago | |
README.md | 4 years ago | |
pom.xml | 3 years ago |
README.md
udiwms-java