8dc56a4a79d05ebc09403c004a6134af1faec769.svn-base 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. /**
  6. * Created by 61618 on 2019/4/8.
  7. */
  8. public class GroupLeaderParam extends BaseBean {
  9. @ApiParam(value = "人员id", required = true)
  10. @ApiModelProperty(value = "人员id", required = true)
  11. private String persid;
  12. @ApiParam(value = "批次id", required = true)
  13. @ApiModelProperty(value = "批次id", required = true)
  14. private String id;
  15. @ApiParam(value = "对象id", required = true)
  16. @ApiModelProperty(value = "对象id", required = true)
  17. private String objId;
  18. public String getPersid() {
  19. return persid;
  20. }
  21. public void setPersid(String persid) {
  22. this.persid = persid;
  23. }
  24. public String getId() {
  25. return id;
  26. }
  27. public void setId(String id) {
  28. this.id = id;
  29. }
  30. @Override
  31. public String getObjId() {
  32. return objId;
  33. }
  34. @Override
  35. public void setObjId(String objId) {
  36. this.objId = objId;
  37. }
  38. @Override
  39. public String toString() {
  40. return "GroupLeaderParam{" +
  41. "persid='" + persid + '\'' +
  42. ", id='" + id + '\'' +
  43. ", objId='" + objId + '\'' +
  44. '}';
  45. }
  46. }