Browse Source

1、无车运单号查询发票增加发票状态和发票状态原因sql文件

mashengyi 2 years ago
parent
commit
a418cdcea3
1 changed files with 12 additions and 0 deletions
  1. 12 0
      doc/sql/20220620_mashengyi_01.sql

+ 12 - 0
doc/sql/20220620_mashengyi_01.sql

@@ -0,0 +1,12 @@
+set feedback off
+set define off
+
+-- 增加contractStatus字段,
+alter table t_billInvoice DROP COLUMN invoiceStatus;
+alter table t_billInvoice add  column invoiceStatus tinyint(4) DEFAULT NULL  COMMENT '发票状态 1、待开票 2、开票中 3、开票完成';
+
+alter table t_billInvoice DROP COLUMN msg;
+alter table t_billInvoice add  column msg varchar(200) CHARACTER SET utf8 DEFAULT NULL COMMENT '发票状态信息';
+commit;
+set feedback on
+set define on