989f3d7ba1936926ec76c0b95252503c52af99f2.svn-base 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * entity:TacWorkerType
  8. *
  9. * @author lune
  10. * @date 2020-4-2
  11. */
  12. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  13. public class TacWorkerType extends BaseBean implements Serializable {
  14. @ApiModelProperty("主键id")
  15. private String id;
  16. @ApiModelProperty("人员id")
  17. private String workerid;
  18. /**
  19. * 1--角色:11-前期专家、12-建管专家、13-计划专家、14-财务专家、15-质量专家、16-安全专家、19-助理、20-稽察组长、21-稽查特派员
  20. *
  21. */
  22. @ApiModelProperty("类型(1:角色,2:组别 其他待定)")
  23. private String type;
  24. @ApiModelProperty("值")
  25. private String value;
  26. public TacWorkerType() {
  27. }
  28. public String getId() {
  29. return id;
  30. }
  31. public void setId(String id) {
  32. this.id = id;
  33. }
  34. public String getWorkerid() {
  35. return workerid;
  36. }
  37. public void setWorkerid(String workerid) {
  38. this.workerid = workerid;
  39. }
  40. public String getType() {
  41. return type;
  42. }
  43. public void setType(String type) {
  44. this.type = type;
  45. }
  46. public String getValue() {
  47. return value;
  48. }
  49. public void setValue(String value) {
  50. this.value = value;
  51. }
  52. @Override
  53. public String toString() {
  54. return "TacWorkerType [" + "id=" + id + ", workerid=" + workerid + ", type=" + type + ", value=" + value + "]";
  55. }
  56. }