You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
732 B
52 lines
732 B
package com.zky.pojo;
|
|
|
|
import lombok.ToString;
|
|
|
|
/**
|
|
* 文件管理对象 td_bjca
|
|
*
|
|
* @author itzky
|
|
* @date 2023-12-22
|
|
*/
|
|
@ToString
|
|
public class TdBjca {
|
|
|
|
/** $column.columnComment */
|
|
private Long id;
|
|
|
|
/** 证书持有者 */
|
|
private String cert;
|
|
|
|
/** 证书id */
|
|
private String certId;
|
|
|
|
public void setId(Long id)
|
|
{
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getId()
|
|
{
|
|
return id;
|
|
}
|
|
public void setCert(String cert)
|
|
{
|
|
this.cert = cert;
|
|
}
|
|
|
|
public String getCert()
|
|
{
|
|
return cert;
|
|
}
|
|
public void setCertId(String certId)
|
|
{
|
|
this.certId = certId;
|
|
}
|
|
|
|
public String getCertId()
|
|
{
|
|
return certId;
|
|
}
|
|
|
|
}
|