增加导出功能
This commit is contained in:
@@ -2,6 +2,8 @@ package com.nis.domain.configuration;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.nis.util.excel.ExcelField;
|
||||
|
||||
/**
|
||||
* 拦截证书策略
|
||||
* @author dell
|
||||
@@ -14,16 +16,34 @@ public class PxyObjKeyring extends BaseCfg<PxyObjKeyring> {
|
||||
*/
|
||||
private static final long serialVersionUID = -2720862431960415564L;
|
||||
private String indexTable="pxy_obj_keyring";
|
||||
@ExcelField(title="keyring_type",dictType="INTERCEPT_CERTIFICATE_TYPE",sort=2)
|
||||
private String keyringType;
|
||||
@ExcelField(title="private_key_file",sort=3)
|
||||
private String privateKeyFile;
|
||||
@ExcelField(title="public_key_file",sort=4)
|
||||
private String publicKeyFile;
|
||||
@ExcelField(title="expire_after",sort=5)
|
||||
private Integer expireAfter;
|
||||
private String publicKeyAlgo;
|
||||
private String crl;
|
||||
@ExcelField(title="issuer",sort=6)
|
||||
private String issuer;
|
||||
@ExcelField(title="not_before_time",sort=8)
|
||||
private Date notBeforeTime;
|
||||
@ExcelField(title="not_after_time",sort=9)
|
||||
private Date notAfterTime;
|
||||
@ExcelField(title="certificate_subject",sort=7)
|
||||
private String subject;
|
||||
@ExcelField(title="keyring_name",sort=1)
|
||||
private String keyringName;
|
||||
|
||||
|
||||
public String getKeyringName() {
|
||||
return keyringName;
|
||||
}
|
||||
public void setKeyringName(String keyringName) {
|
||||
this.keyringName = keyringName;
|
||||
}
|
||||
public String getKeyringType() {
|
||||
return keyringType;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user