96ba0b2127fb3b2a031f01da63601c21ea600ce5.svn-base 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. public class BisInspAllRlationDto implements Serializable {
  5. @ApiModelProperty(value = "用户id", notes = "", required = true)
  6. private String guid;
  7. @ApiModelProperty(value = "用户姓名", notes = "", required = true)
  8. private String persName;
  9. @ApiModelProperty(value = "手机号", notes = "", required = true)
  10. private String mobilenumb;
  11. @ApiModelProperty(value = "组长,组员字典 ", notes = "", required = true)
  12. private String pertype;
  13. public BisInspAllRlationDto() {
  14. }
  15. public String getGuid() {
  16. return guid;
  17. }
  18. public void setGuid(String guid) {
  19. this.guid = guid;
  20. }
  21. public String getPersName() {
  22. return persName;
  23. }
  24. public void setPersName(String persName) {
  25. this.persName = persName;
  26. }
  27. public String getMobilenumb() {
  28. return mobilenumb;
  29. }
  30. public void setMobilenumb(String mobilenumb) {
  31. this.mobilenumb = mobilenumb;
  32. }
  33. public String getPertype() {
  34. return pertype;
  35. }
  36. public void setPertype(String pertype) {
  37. this.pertype = pertype;
  38. }
  39. }