2e333ff053c544cccf29914f22e84b476c9e47f0.svn-base 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * TacEvalationNormParam
  8. *
  9. * @author lune
  10. * @date 2019-9-19
  11. */
  12. public class TacEvalationNormParam extends PageParam implements Serializable {
  13. @ApiModelProperty("*主键")
  14. private String id;
  15. @ApiModelProperty("*年度")
  16. private Long year;
  17. @ApiModelProperty("权重id")
  18. private String weightId;
  19. @ApiModelProperty("*分类(1:工作态度;2:业务能力;3:工作质量;4:综合评测;5:特派员;6:助理)")
  20. private String classes;
  21. @ApiModelProperty("*等级(11:优+;1:优;12:优-;21:良+;2:良;22:良-;3:中;4:差;)")
  22. private String lev;
  23. @ApiModelProperty("*分值")
  24. private Long score;
  25. @ApiModelProperty("排序顺序")
  26. private Long sn;
  27. @ApiModelProperty("创建人")
  28. private String persId;
  29. @ApiModelProperty("创建时间")
  30. private Date inTm;
  31. @ApiModelProperty("修改时间")
  32. private Date upTm;
  33. @ApiModelProperty("分类名称")
  34. private String className;
  35. public String getClassName() {
  36. return className;
  37. }
  38. public void setClassName(String className) {
  39. this.className = className;
  40. }
  41. public TacEvalationNormParam() {
  42. }
  43. public String getId() {
  44. return id;
  45. }
  46. public void setId(String id) {
  47. this.id = id;
  48. }
  49. public Long getYear() {
  50. return year;
  51. }
  52. public void setYear(Long year) {
  53. this.year = year;
  54. }
  55. public String getWeightId() {
  56. return weightId;
  57. }
  58. public void setWeightId(String weightId) {
  59. this.weightId = weightId;
  60. }
  61. public String getClasses() {
  62. return classes;
  63. }
  64. public void setClasses(String classes) {
  65. this.classes = classes;
  66. }
  67. public String getLev() {
  68. return lev;
  69. }
  70. public void setLev(String lev) {
  71. this.lev = lev;
  72. }
  73. public Long getScore() {
  74. return score;
  75. }
  76. public void setScore(Long score) {
  77. this.score = score;
  78. }
  79. public Long getSn() {
  80. return sn;
  81. }
  82. public void setSn(Long sn) {
  83. this.sn = sn;
  84. }
  85. public String getPersId() {
  86. return persId;
  87. }
  88. public void setPersId(String persId) {
  89. this.persId = persId;
  90. }
  91. public Date getInTm() {
  92. return inTm;
  93. }
  94. public void setInTm(Date inTm) {
  95. this.inTm = inTm;
  96. }
  97. public Date getUpTm() {
  98. return upTm;
  99. }
  100. public void setUpTm(Date upTm) {
  101. this.upTm = upTm;
  102. }
  103. }