| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * TacEvalationNormParam
- *
- * @author lune
- * @date 2019-9-19
- */
- public class TacEvalationNormParam extends PageParam implements Serializable {
- @ApiModelProperty("*主键")
- private String id;
- @ApiModelProperty("*年度")
- private Long year;
- @ApiModelProperty("权重id")
- private String weightId;
- @ApiModelProperty("*分类(1:工作态度;2:业务能力;3:工作质量;4:综合评测;5:特派员;6:助理)")
- private String classes;
- @ApiModelProperty("*等级(11:优+;1:优;12:优-;21:良+;2:良;22:良-;3:中;4:差;)")
- private String lev;
- @ApiModelProperty("*分值")
- private Long score;
- @ApiModelProperty("排序顺序")
- private Long sn;
- @ApiModelProperty("创建人")
- private String persId;
- @ApiModelProperty("创建时间")
- private Date inTm;
- @ApiModelProperty("修改时间")
- private Date upTm;
- @ApiModelProperty("分类名称")
- private String className;
- public String getClassName() {
- return className;
- }
- public void setClassName(String className) {
- this.className = className;
- }
- public TacEvalationNormParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public Long getYear() {
- return year;
- }
- public void setYear(Long year) {
- this.year = year;
- }
- public String getWeightId() {
- return weightId;
- }
- public void setWeightId(String weightId) {
- this.weightId = weightId;
- }
- public String getClasses() {
- return classes;
- }
- public void setClasses(String classes) {
- this.classes = classes;
- }
- public String getLev() {
- return lev;
- }
- public void setLev(String lev) {
- this.lev = lev;
- }
- public Long getScore() {
- return score;
- }
- public void setScore(Long score) {
- this.score = score;
- }
- public Long getSn() {
- return sn;
- }
- public void setSn(Long sn) {
- this.sn = sn;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Date getInTm() {
- return inTm;
- }
- public void setInTm(Date inTm) {
- this.inTm = inTm;
- }
- public Date getUpTm() {
- return upTm;
- }
- public void setUpTm(Date upTm) {
- this.upTm = upTm;
- }
- }
|