package com.gk.firework.Domain.Vo;
|
|
import com.gk.firework.Domain.Enum.PersonnelCategory;
|
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.web.multipart.MultipartFile;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.List;
|
|
public class EnterprisePersonVo implements Serializable {
|
|
private Long id;
|
|
/** 姓名 name **/
|
private String name;
|
|
/** 职务 post **/
|
private String post;
|
|
/** 证书编号 number **/
|
private String number;
|
|
/** 有效开始时间 validstarttime **/
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
private Date validstarttime;
|
|
/** 有效结束时间 validendtime **/
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
private Date validendtime;
|
|
/** 备注 memo **/
|
private String memo;
|
|
/** 企业id enterpriseid **/
|
private Long enterpriseid;
|
|
/** 有效标识 validflag **/
|
private Boolean validflag;
|
|
/** 人员类型 type **/
|
private PersonnelCategory type;
|
|
/** 其他属性 other **/
|
private Boolean isreview;
|
|
private List<Long> imgids;
|
|
private MultipartFile[] file;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getPost() {
|
return post;
|
}
|
|
public void setPost(String post) {
|
this.post = post;
|
}
|
|
public String getNumber() {
|
return number;
|
}
|
|
public void setNumber(String number) {
|
this.number = number;
|
}
|
|
public Date getValidstarttime() {
|
return validstarttime;
|
}
|
|
public void setValidstarttime(Date validstarttime) {
|
this.validstarttime = validstarttime;
|
}
|
|
public Date getValidendtime() {
|
return validendtime;
|
}
|
|
public void setValidendtime(Date validendtime) {
|
this.validendtime = validendtime;
|
}
|
|
public String getMemo() {
|
return memo;
|
}
|
|
public void setMemo(String memo) {
|
this.memo = memo;
|
}
|
|
public Long getEnterpriseid() {
|
return enterpriseid;
|
}
|
|
public void setEnterpriseid(Long enterpriseid) {
|
this.enterpriseid = enterpriseid;
|
}
|
|
public Boolean getValidflag() {
|
return validflag;
|
}
|
|
public void setValidflag(Boolean validflag) {
|
this.validflag = validflag;
|
}
|
|
public PersonnelCategory getType() {
|
return type;
|
}
|
|
public void setType(PersonnelCategory type) {
|
this.type = type;
|
}
|
|
public Boolean getIsreview() {
|
return isreview;
|
}
|
|
public void setIsreview(Boolean isreview) {
|
this.isreview = isreview;
|
}
|
|
public List<Long> getImgids() {
|
return imgids;
|
}
|
|
public void setImgids(List<Long> imgids) {
|
this.imgids = imgids;
|
}
|
|
public MultipartFile[] getFile() {
|
return file;
|
}
|
|
public void setFile(MultipartFile[] file) {
|
this.file = file;
|
}
|
}
|