6beb6b479a92ee69399da2e183b19e0bd4d90ef4.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import io.swagger.annotations.ApiModelProperty;
  4. /**
  5. * Created by 61618 on 2019/4/17.
  6. */
  7. public class PersAllDto extends BaseBean {
  8. @ApiModelProperty("人员id")
  9. private String guid;
  10. @ApiModelProperty("人员名称")
  11. private String persName;
  12. @ApiModelProperty("人员类型")
  13. private String persType;
  14. public String getPersType() {
  15. return persType;
  16. }
  17. public void setPersType(String persType) {
  18. this.persType = persType;
  19. }
  20. public String getGuid() {
  21. return guid;
  22. }
  23. public void setGuid(String guid) {
  24. this.guid = guid;
  25. }
  26. public String getPersName() {
  27. return persName;
  28. }
  29. public void setPersName(String persName) {
  30. this.persName = persName;
  31. }
  32. @Override
  33. public String toString() {
  34. return "PersAllDto{" +
  35. "guid='" + guid + '\'' +
  36. ", persName='" + persName + '\'' +
  37. ", persType='" + persType + '\'' +
  38. '}';
  39. }
  40. }