瀏覽代碼

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

mashengyi 2 年之前
父節點
當前提交
a418cdcea3
共有 1 個文件被更改,包括 12 次插入0 次删除
  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