1、NTC_MAIL_LOG日志增加eml_key字段;

2、所有回调表(属于策略一部分),删除action 属性;
This commit is contained in:
zhangdongxu
2018-08-21 10:16:34 +08:00
parent 20296cda30
commit c3f74e3a30
5 changed files with 37 additions and 16 deletions

View File

@@ -18,6 +18,8 @@ public class NtcMailLog extends LogEntity{
protected String mailTo;
@ApiModelProperty(value="主题", required=true)
protected String subject;
@ApiModelProperty(value="EML文件KEY", required=true)
protected String emlKey;
@ApiModelProperty(value="EML文件转储路径", required=true)
protected String emlFile;
@@ -60,4 +62,19 @@ public class NtcMailLog extends LogEntity{
public void setEmlFile(String emlFile) {
this.emlFile = emlFile;
}
/**
* @return the emlKey
*/
public String getEmlKey() {
return emlKey;
}
/**
* @param emlKey the emlKey to set
*/
public void setEmlKey(String emlKey) {
this.emlKey = emlKey;
}
}

View File

@@ -158,6 +158,7 @@
<result column="mail_from" jdbcType="VARCHAR" property="mailFrom" />
<result column="mail_to" jdbcType="VARCHAR" property="mailTo" />
<result column="subject" jdbcType="VARCHAR" property="subject" />
<result column="eml_key" jdbcType="VARCHAR" property="emlKey" />
<result column="eml_file" jdbcType="VARCHAR" property="emlFile" />
</resultMap>