提交 b83dec8f 编写于 作者: 江南一点雨

m

上级 1391a8c5
......@@ -25,7 +25,6 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Maven: org.flywaydb:flyway-core:5.2.4" level="project" />
<orderEntry type="module" module-name="vhr-model" />
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.1.8.RELEASE" level="project" />
<orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-json:2.1.8.RELEASE" level="project" />
......
......@@ -51,16 +51,16 @@ CREATE TABLE `appraise` (
DROP TABLE IF EXISTS `mail_send_log`;
CREATE TABLE `mail_send_log` (
`msgId` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
`msgId` varchar(255) DEFAULT NULL,
`empId` int(11) DEFAULT NULL,
`status` int(11) DEFAULT '0' COMMENT '0发送中,1发送成功,2发送失败',
`routeKey` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
`exchange` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
`count` int(11) DEFAULT NULL COMMENT '重试次数',
`routeKey` varchar(255) DEFAULT NULL,
`exchange` varchar(255) DEFAULT NULL,
`count` int(11) DEFAULT '0' COMMENT '重试次数',
`tryTime` date DEFAULT NULL COMMENT '第一次重试时间',
`createTime` date DEFAULT NULL,
`updateTime` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*Data for the table `appraise` */
/*Table structure for table `department` */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册