From 46dbb3fa5c1a54f3554ad72cc778e0e659ff80a4 Mon Sep 17 00:00:00 2001 From: wans <747101512@qq.com> Date: Sat, 19 Jun 2021 15:47:58 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=B5=E5=AD=90=E8=AF=81=E4=BB=B6=E5=AE=9E?= =?UTF-8?q?=E4=BD=93=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pojo/dtos/cardential/CardentialDTO.java | 134 ++++++++++++++++++ 1 file changed, 134 insertions(+) create mode 100644 src/main/java/cn/com/tenlion/pojo/dtos/cardential/CardentialDTO.java diff --git a/src/main/java/cn/com/tenlion/pojo/dtos/cardential/CardentialDTO.java b/src/main/java/cn/com/tenlion/pojo/dtos/cardential/CardentialDTO.java new file mode 100644 index 0000000..7d5246f --- /dev/null +++ b/src/main/java/cn/com/tenlion/pojo/dtos/cardential/CardentialDTO.java @@ -0,0 +1,134 @@ +package cn.com.tenlion.pojo.dtos.cardential; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; + +/** + * @author xwangs + * @create 2021-06-19 11:13 + * @description + */ +@ApiModel +public class CardentialDTO { + + @ApiModelProperty(name = "photo", value = "头像") + private String photo; + @ApiModelProperty(name = "name", value = "姓名") + private String name; + @ApiModelProperty(name = "sex", value = "性别") + private String sex; + @ApiModelProperty(name = "educationDegree", value = "文化程度") + private String educationDegree; + @ApiModelProperty(name = "identity", value = "身份证号") + private String identity; + @ApiModelProperty(name = "department", value = "单位名称") + private String department; + @ApiModelProperty(name = "position", value = "职务") + private String position; + @ApiModelProperty(name = "sueDate", value = "发证日期") + private String sueDate; + @ApiModelProperty(name = "startDate", value = "有效日期始") + private String startDate; + @ApiModelProperty(name = "endDate", value = "有效日期止") + private String endDate; + @ApiModelProperty(name = "number", value = "证件编号") + private String number; + @ApiModelProperty(name = "qrCode", value = "二维码") + private String qrCode; + + public String getPhoto() { + return photo == null ? "" : photo; + } + + public void setPhoto(String photo) { + this.photo = photo; + } + + public String getName() { + return name == null ? "" : name; + } + + public void setName(String name) { + this.name = name; + } + + public String getSex() { + return sex == null ? "" : sex; + } + + public void setSex(String sex) { + this.sex = sex; + } + + public String getEducationDegree() { + return educationDegree == null ? "" : educationDegree; + } + + public void setEducationDegree(String educationDegree) { + this.educationDegree = educationDegree; + } + + public String getIdentity() { + return identity == null ? "" : identity; + } + + public void setIdentity(String identity) { + this.identity = identity; + } + + public String getDepartment() { + return department == null ? "" : department; + } + + public void setDepartment(String department) { + this.department = department; + } + + public String getPosition() { + return position == null ? "" : position; + } + + public void setPosition(String position) { + this.position = position; + } + + public String getSueDate() { + return sueDate == null ? "" : sueDate; + } + + public void setSueDate(String sueDate) { + this.sueDate = sueDate; + } + + public String getStartDate() { + return startDate == null ? "" : startDate; + } + + public void setStartDate(String startDate) { + this.startDate = startDate; + } + + public String getEndDate() { + return endDate == null ? "" : endDate; + } + + public void setEndDate(String endDate) { + this.endDate = endDate; + } + + public String getNumber() { + return number == null ? "" : number; + } + + public void setNumber(String number) { + this.number = number; + } + + public String getQrCode() { + return qrCode == null ? "" : qrCode; + } + + public void setQrCode(String qrCode) { + this.qrCode = qrCode; + } +}