| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package cn.com.goldenwater.dcproj.dto;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * Created by jinshui on 2019/11/12.
- */
- public class TacEvalationInformDto implements Serializable {
- @ApiModelProperty("人员id")
- private String id;
- @ApiModelProperty("参加批次")
- private String batches;
- @ApiModelProperty("*姓名")
- private String name;
- @ApiModelProperty("年龄")
- private Double age;
- @ApiModelProperty("*手机号")
- private String mobilenumb;
- @ApiModelProperty("*身份证号")
- private String idNo;
- @ApiModelProperty("是否发送")
- private String state;
- @ApiModelProperty("次数")
- private Long count;
- @ApiModelProperty("角色")
- private String roleType;
- public String getRoleType() {
- return roleType;
- }
- public void setRoleType(String roleType) {
- this.roleType = roleType;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getBatches() {
- return batches;
- }
- public void setBatches(String batches) {
- this.batches = batches;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public Double getAge() {
- return age;
- }
- public void setAge(Double age) {
- this.age = age;
- }
- public String getMobilenumb() {
- return mobilenumb;
- }
- public void setMobilenumb(String mobilenumb) {
- this.mobilenumb = mobilenumb;
- }
- public String getIdNo() {
- return idNo;
- }
- public void setIdNo(String idNo) {
- this.idNo = idNo;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public Long getCount() {
- return count;
- }
- public void setCount(Long count) {
- this.count = count;
- }
- }
|