1.新增pro生产环境配置。
2.新增CMINMSGS和COUTMSGS 脚本 3.去除启动自动获取最新动态的功能。 4.完善测试以上功能。修改Sender为OSH5
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
CREATE TABLE COUTMSGS
|
||||
(
|
||||
COUTMSGS_ID int(23) not null AUTO_INCREMENT PRIMARY KEY,
|
||||
COUTMSGS_CLOB_MSG LONGTEXT,
|
||||
COUTMSGS_DATE_INSERTED datetime(0) DEFAULT current_timestamp() not null,
|
||||
COUTMSGS_DATE_SENT datetime(0),
|
||||
ROUTINGID VARCHAR(23) not null,
|
||||
COUTMSGS_TRUEFALS_GROUP int(1) default 0 not null,
|
||||
COUTMSGS_NO_MESSAGES int(2),
|
||||
COUTMSGS_GROUP_ORDER int(2),
|
||||
COUTMSGS_GROUP_ID int(6),
|
||||
COUTMSGS_FINAL_GROUP_IND int(1) default 0 not null,
|
||||
COUTMSGS_ACK_REQD int(1) default 0 not null,
|
||||
COUTMSGS_ACK_RESEND_TIMES int(4) default 0 not null,
|
||||
COUTMSGS_ACK_DATE_RECV datetime(0),
|
||||
COUTMSGS_ENCRYPT int(1) default 0 not null,
|
||||
COUTMSGS_ERROR int(1) default 0 not null
|
||||
);
|
||||
Reference in New Issue
Block a user