218 lines
3.3 KiB
Plaintext
218 lines
3.3 KiB
Plaintext
|
|
package com.nationalelectric.greenH5.po;
|
||
|
|
|
||
|
|
import org.hibernate.validator.constraints.NotBlank;
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* GreenRetinueInfo
|
||
|
|
* @author dell
|
||
|
|
*/
|
||
|
|
public class GreenRetinueInfo implements java.io.Serializable {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 序列化
|
||
|
|
*/
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
*主键ID
|
||
|
|
*/
|
||
|
|
|
||
|
|
private Long id;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*访客id
|
||
|
|
*/
|
||
|
|
private Long visitorId;
|
||
|
|
|
||
|
|
private String visitorTel;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*随行人员姓名
|
||
|
|
*/
|
||
|
|
@NotBlank(message="随行人员姓名不能为空")
|
||
|
|
private String retinueName;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*身份证照片1
|
||
|
|
*/
|
||
|
|
// @NotBlank(message="身份证照片不能为空")
|
||
|
|
private String idcardPic1;
|
||
|
|
private String idcard;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*身份证照片2
|
||
|
|
*/
|
||
|
|
// @NotBlank(message="身份证照片不能为空")
|
||
|
|
private String idcardPic2;
|
||
|
|
|
||
|
|
private String idcardPic1Data;
|
||
|
|
|
||
|
|
private String idcardPic2Data;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
public String getIdcard() {
|
||
|
|
return idcard;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIdcard(String idcard) {
|
||
|
|
this.idcard = idcard;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getVisitorTel() {
|
||
|
|
return visitorTel;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setVisitorTel(String visitorTel) {
|
||
|
|
this.visitorTel = visitorTel;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getIdcardPic1Data() {
|
||
|
|
return idcardPic1Data;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIdcardPic1Data(String idcardPic1Data) {
|
||
|
|
this.idcardPic1Data = idcardPic1Data;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getIdcardPic2Data() {
|
||
|
|
return idcardPic2Data;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIdcardPic2Data(String idcardPic2Data) {
|
||
|
|
this.idcardPic2Data = idcardPic2Data;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*创建者
|
||
|
|
*/
|
||
|
|
private String creator;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*修改者
|
||
|
|
*/
|
||
|
|
private String modifier;
|
||
|
|
|
||
|
|
private String uuid;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*创建时间
|
||
|
|
*/
|
||
|
|
private Date gmtCreated;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*修改时间
|
||
|
|
*/
|
||
|
|
private Date gmtModified;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*是否删除YN默认N
|
||
|
|
*/
|
||
|
|
private String isDeleted;
|
||
|
|
|
||
|
|
private Integer pushState;
|
||
|
|
|
||
|
|
|
||
|
|
public Integer getPushState() {
|
||
|
|
return pushState;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPushState(Integer pushState) {
|
||
|
|
this.pushState = pushState;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getUuid() {
|
||
|
|
return uuid;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setUuid(String uuid) {
|
||
|
|
this.uuid = uuid;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Long getId() {
|
||
|
|
return id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId(Long id) {
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Long getVisitorId() {
|
||
|
|
return visitorId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setVisitorId(Long visitorId) {
|
||
|
|
this.visitorId = visitorId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getRetinueName() {
|
||
|
|
return retinueName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setRetinueName(String retinueName) {
|
||
|
|
this.retinueName = retinueName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getIdcardPic1() {
|
||
|
|
return idcardPic1;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIdcardPic1(String idcardPic1) {
|
||
|
|
this.idcardPic1 = idcardPic1;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getIdcardPic2() {
|
||
|
|
return idcardPic2;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIdcardPic2(String idcardPic2) {
|
||
|
|
this.idcardPic2 = idcardPic2;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCreator() {
|
||
|
|
return creator;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCreator(String creator) {
|
||
|
|
this.creator = creator;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getModifier() {
|
||
|
|
return modifier;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setModifier(String modifier) {
|
||
|
|
this.modifier = modifier;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getGmtCreated() {
|
||
|
|
return gmtCreated;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setGmtCreated(Date gmtCreated) {
|
||
|
|
this.gmtCreated = gmtCreated;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getGmtModified() {
|
||
|
|
return gmtModified;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setGmtModified(Date gmtModified) {
|
||
|
|
this.gmtModified = gmtModified;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getIsDeleted() {
|
||
|
|
return isDeleted;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIsDeleted(String isDeleted) {
|
||
|
|
this.isDeleted = isDeleted;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|