c9e40e5efa0f2caa51d91e2fb2fa9fcbdf88ea6b.svn-base 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. /**
  5. * Created by jinshui on 2019/11/12.
  6. */
  7. public class TacEvalationInformDto implements Serializable {
  8. @ApiModelProperty("人员id")
  9. private String id;
  10. @ApiModelProperty("参加批次")
  11. private String batches;
  12. @ApiModelProperty("*姓名")
  13. private String name;
  14. @ApiModelProperty("年龄")
  15. private Double age;
  16. @ApiModelProperty("*手机号")
  17. private String mobilenumb;
  18. @ApiModelProperty("*身份证号")
  19. private String idNo;
  20. @ApiModelProperty("是否发送")
  21. private String state;
  22. @ApiModelProperty("次数")
  23. private Long count;
  24. @ApiModelProperty("角色")
  25. private String roleType;
  26. public String getRoleType() {
  27. return roleType;
  28. }
  29. public void setRoleType(String roleType) {
  30. this.roleType = roleType;
  31. }
  32. public String getId() {
  33. return id;
  34. }
  35. public void setId(String id) {
  36. this.id = id;
  37. }
  38. public String getBatches() {
  39. return batches;
  40. }
  41. public void setBatches(String batches) {
  42. this.batches = batches;
  43. }
  44. public String getName() {
  45. return name;
  46. }
  47. public void setName(String name) {
  48. this.name = name;
  49. }
  50. public Double getAge() {
  51. return age;
  52. }
  53. public void setAge(Double age) {
  54. this.age = age;
  55. }
  56. public String getMobilenumb() {
  57. return mobilenumb;
  58. }
  59. public void setMobilenumb(String mobilenumb) {
  60. this.mobilenumb = mobilenumb;
  61. }
  62. public String getIdNo() {
  63. return idNo;
  64. }
  65. public void setIdNo(String idNo) {
  66. this.idNo = idNo;
  67. }
  68. public String getState() {
  69. return state;
  70. }
  71. public void setState(String state) {
  72. this.state = state;
  73. }
  74. public Long getCount() {
  75. return count;
  76. }
  77. public void setCount(Long count) {
  78. this.count = count;
  79. }
  80. }