OrganizationEvaluationRule.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package com.ims.eval.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.extension.activerecord.Model;
  4. import java.util.Date;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. /**
  8. * <p>
  9. * 单位/部门考评配置
  10. * </p>
  11. *
  12. * @author wang
  13. * @since 2023-03-01
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = true)
  17. public class OrganizationEvaluationRule extends Model {
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. * 主键ID
  21. */
  22. private String id;
  23. /**
  24. * 考评组织名称
  25. */
  26. private String organizationName;
  27. /**
  28. * 考评组织ID
  29. */
  30. private String organizationId;
  31. /**
  32. * 考评类别
  33. */
  34. private String organizationType;
  35. /**
  36. * 业务版块
  37. */
  38. private String binSection;
  39. /**
  40. * 业务版块name
  41. */
  42. @TableField(exist = false)
  43. private String binSectionName;
  44. /**
  45. * 业务阶段
  46. */
  47. private String binStage;
  48. /**
  49. * 业务阶段name
  50. */
  51. @TableField(exist = false)
  52. private String binStageName;
  53. /**
  54. * 考评周期
  55. */
  56. private String evaluationCycle;
  57. /**
  58. * 考评规则ID
  59. */
  60. private String evaluateRuleId;
  61. /**
  62. * 创建时间
  63. */
  64. private Date createTime;
  65. /**
  66. * 创建者
  67. */
  68. private String createBy;
  69. /**
  70. * 更新时间
  71. */
  72. private Date updateTime;
  73. /**
  74. * 更新者
  75. */
  76. private String updateBy;
  77. /**
  78. * 删除标记(0 为未删除,1 为已删除)
  79. */
  80. private String delFlag;
  81. /**
  82. * 是否考核(0;未考核;1:以考核)
  83. */
  84. private String isCheck;
  85. /**
  86. * 排序
  87. */
  88. private Integer orderNum;
  89. /**
  90. * 年
  91. */
  92. private String year;
  93. /**
  94. * 月
  95. */
  96. private String month;
  97. }