6c0f40e94861d2f6ef5b35e09f85f3491c1792f1.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. /**
  6. * TacWorkerTypeParam
  7. *
  8. * @author lune
  9. * @date 2020-4-2
  10. */
  11. public class TacWorkerTypeParam extends PageParam implements Serializable {
  12. @ApiModelProperty("主键id")
  13. private String id;
  14. @ApiModelProperty("人员id")
  15. private String workerid;
  16. @ApiModelProperty("类型(1:角色,2:组别 其他待定)")
  17. private String type;
  18. @ApiModelProperty("值")
  19. private String value;
  20. public TacWorkerTypeParam() {
  21. }
  22. public String getId() {
  23. return id;
  24. }
  25. public void setId(String id) {
  26. this.id = id;
  27. }
  28. public String getWorkerid() {
  29. return workerid;
  30. }
  31. public void setWorkerid(String workerid) {
  32. this.workerid = workerid;
  33. }
  34. public String getType() {
  35. return type;
  36. }
  37. public void setType(String type) {
  38. this.type = type;
  39. }
  40. public String getValue() {
  41. return value;
  42. }
  43. public void setValue(String value) {
  44. this.value = value;
  45. }
  46. }