608ad5f169b22fc966059134f1ad392b21db54b9.svn-base 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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.math.BigDecimal;
  6. import java.util.Date;
  7. /**
  8. * TacEvalationConfigParam
  9. *
  10. * @author lune
  11. * @date 2019-9-19
  12. */
  13. public class TacEvalationConfigParam extends PageParam implements Serializable {
  14. @ApiModelProperty("*主键")
  15. private String id;
  16. @ApiModelProperty("*年度")
  17. private Long year;
  18. @ApiModelProperty("*分类(1:工作态度;2:业务能力;3:工作质量;4:综合评测;5:特派员;6:助理)")
  19. private String classes;
  20. @ApiModelProperty("权重")
  21. private Long weight;
  22. @ApiModelProperty("排序顺序")
  23. private Long sn;
  24. @ApiModelProperty("创建人")
  25. private String persId;
  26. @ApiModelProperty("创建时间")
  27. private Date inTm;
  28. @ApiModelProperty("修改时间")
  29. private Date upTm;
  30. @ApiModelProperty("分类名称")
  31. private String className;
  32. @ApiModelProperty("级别")
  33. private String lev;
  34. @ApiModelProperty("测评分数")
  35. private BigDecimal score;
  36. @ApiModelProperty("二级分类")
  37. private String class2;
  38. @ApiModelProperty("二级权重")
  39. private BigDecimal weight2;
  40. public TacEvalationConfigParam() {
  41. }
  42. public String getClassName() {
  43. return className;
  44. }
  45. public void setClassName(String className) {
  46. this.className = className;
  47. }
  48. public String getId() {
  49. return id;
  50. }
  51. public void setId(String id) {
  52. this.id = id;
  53. }
  54. public Long getYear() {
  55. return year;
  56. }
  57. public void setYear(Long year) {
  58. this.year = year;
  59. }
  60. public String getClasses() {
  61. return classes;
  62. }
  63. public void setClasses(String classes) {
  64. this.classes = classes;
  65. }
  66. public Long getWeight() {
  67. return weight;
  68. }
  69. public void setWeight(Long weight) {
  70. this.weight = weight;
  71. }
  72. public Long getSn() {
  73. return sn;
  74. }
  75. public void setSn(Long sn) {
  76. this.sn = sn;
  77. }
  78. public String getPersId() {
  79. return persId;
  80. }
  81. public void setPersId(String persId) {
  82. this.persId = persId;
  83. }
  84. public Date getInTm() {
  85. return inTm;
  86. }
  87. public void setInTm(Date inTm) {
  88. this.inTm = inTm;
  89. }
  90. public Date getUpTm() {
  91. return upTm;
  92. }
  93. public void setUpTm(Date upTm) {
  94. this.upTm = upTm;
  95. }
  96. public String getLev() {
  97. return lev;
  98. }
  99. public void setLev(String lev) {
  100. this.lev = lev;
  101. }
  102. public BigDecimal getScore() {
  103. return score;
  104. }
  105. public void setScore(BigDecimal score) {
  106. this.score = score;
  107. }
  108. public String getClass2() {
  109. return class2;
  110. }
  111. public void setClass2(String class2) {
  112. this.class2 = class2;
  113. }
  114. public BigDecimal getWeight2() {
  115. return weight2;
  116. }
  117. public void setWeight2(BigDecimal weight2) {
  118. this.weight2 = weight2;
  119. }
  120. }