bce2a742e9286311c83b3fe6dc64e531486b9ae7.svn-base 945 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. public class PblmRole {
  4. @ApiModelProperty("节点id")
  5. private String id;
  6. @ApiModelProperty("节点长度,当长度为6为督查办/流域查询")
  7. private int length;
  8. @ApiModelProperty("可督查范围列表")
  9. private String name;
  10. @ApiModelProperty("用户类型")
  11. private String perType;
  12. public String getPerType() {
  13. return perType;
  14. }
  15. public void setPerType(String perType) {
  16. this.perType = perType;
  17. }
  18. public String getId() {
  19. return id;
  20. }
  21. public void setId(String id) {
  22. this.id = id;
  23. }
  24. public int getLength() {
  25. return length;
  26. }
  27. public void setLength(int length) {
  28. this.length = length;
  29. }
  30. public String getName() {
  31. return name;
  32. }
  33. public void setName(String name) {
  34. this.name = name;
  35. }
  36. }