NTC_SSL_LOG中字段ca改为cn

This commit is contained in:
zhangdongxu
2018-08-02 16:48:29 +08:00
parent 4a353a3975
commit 11667526fb
2 changed files with 6 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ public class NtcSslLog extends LogEntity {
protected String san;
@ApiModelProperty(value="证书授权机构", required=true)
protected String ca;
protected String cn;
public String getVersion() {
return version;
@@ -47,11 +47,11 @@ public class NtcSslLog extends LogEntity {
this.san = san;
}
public String getCa() {
return ca;
public String getCn() {
return cn;
}
public void setCa(String ca) {
this.ca = ca;
public void setCn(String cn) {
this.cn = cn;
}
}

View File

@@ -161,7 +161,7 @@
<result column="version" jdbcType="VARCHAR" property="version" />
<result column="sni" jdbcType="VARCHAR" property="sni" />
<result column="san" jdbcType="VARCHAR" property="san" />
<result column="ca" jdbcType="VARCHAR" property="ca" />
<result column="cn" jdbcType="VARCHAR" property="cn" />
</resultMap>