| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package cn.com.goldenwater.dcproj.dto;
- import io.swagger.annotations.ApiModelProperty;
- public class PblmRole {
- @ApiModelProperty("节点id")
- private String id;
- @ApiModelProperty("节点长度,当长度为6为督查办/流域查询")
- private int length;
- @ApiModelProperty("可督查范围列表")
- private String name;
- @ApiModelProperty("用户类型")
- private String perType;
- public String getPerType() {
- return perType;
- }
- public void setPerType(String perType) {
- this.perType = perType;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public int getLength() {
- return length;
- }
- public void setLength(int length) {
- this.length = length;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- }
|