NTC_SSL_LOG中字段ca改为cn
This commit is contained in:
@@ -21,7 +21,7 @@ public class NtcSslLog extends LogEntity {
|
|||||||
protected String san;
|
protected String san;
|
||||||
|
|
||||||
@ApiModelProperty(value="证书授权机构", required=true)
|
@ApiModelProperty(value="证书授权机构", required=true)
|
||||||
protected String ca;
|
protected String cn;
|
||||||
|
|
||||||
public String getVersion() {
|
public String getVersion() {
|
||||||
return version;
|
return version;
|
||||||
@@ -47,11 +47,11 @@ public class NtcSslLog extends LogEntity {
|
|||||||
this.san = san;
|
this.san = san;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCa() {
|
public String getCn() {
|
||||||
return ca;
|
return cn;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCa(String ca) {
|
public void setCn(String cn) {
|
||||||
this.ca = ca;
|
this.cn = cn;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -161,7 +161,7 @@
|
|||||||
<result column="version" jdbcType="VARCHAR" property="version" />
|
<result column="version" jdbcType="VARCHAR" property="version" />
|
||||||
<result column="sni" jdbcType="VARCHAR" property="sni" />
|
<result column="sni" jdbcType="VARCHAR" property="sni" />
|
||||||
<result column="san" jdbcType="VARCHAR" property="san" />
|
<result column="san" jdbcType="VARCHAR" property="san" />
|
||||||
<result column="ca" jdbcType="VARCHAR" property="ca" />
|
<result column="cn" jdbcType="VARCHAR" property="cn" />
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user