| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.BisInspAllRlationPers;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * Created by 61618 on 2019/4/11.
- */
- public class PersListDto extends BisInspAllRlationPers {
- @ApiModelProperty(value = "用户角色")
- private String roles;
- @ApiModelProperty("关联的所有机构id,仅用于数据回写")
- private String orgIds;
- @ApiModelProperty("关联的所有机构名称")
- private String orgNames;
- @ApiModelProperty("组名称")
- private String groupName;
- @ApiModelProperty("经度")
- private String centerXGd;
- @ApiModelProperty("纬度")
- private String centerYGd;
- @ApiModelProperty("在线状态")
- private String state;
- @ApiModelProperty("类名称")
- private String objName;
- @ApiModelProperty("处室id")
- private String planDpId;
- @ApiModelProperty("处室名字")
- private String planDpNm;
- private String dcWork;
- @ApiModelProperty("督查次数")
- private Integer dcNum;
- private String isEnable;
- public String getIsEnable() {
- return isEnable;
- }
- public void setIsEnable(String isEnable) {
- this.isEnable = isEnable;
- }
- @Override
- public String getPlanDpId() {
- return planDpId;
- }
- @Override
- public void setPlanDpId(String planDpId) {
- this.planDpId = planDpId;
- }
- public String getPlanDpNm() {
- return planDpNm;
- }
- public void setPlanDpNm(String planDpNm) {
- this.planDpNm = planDpNm;
- }
- public String getObjName() {
- return objName;
- }
- public void setObjName(String objName) {
- this.objName = objName;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getCenterXGd() {
- return centerXGd;
- }
- public void setCenterXGd(String centerXGd) {
- this.centerXGd = centerXGd;
- }
- public String getCenterYGd() {
- return centerYGd;
- }
- public void setCenterYGd(String centerYGd) {
- this.centerYGd = centerYGd;
- }
- public String getGroupName() {
- return groupName;
- }
- public void setGroupName(String groupName) {
- this.groupName = groupName;
- }
- public String getOrgIds() {
- return orgIds;
- }
- public void setOrgIds(String orgIds) {
- this.orgIds = orgIds;
- }
- public String getOrgNames() {
- return orgNames;
- }
- public void setOrgNames(String orgNames) {
- this.orgNames = orgNames;
- }
- public String getRoles() {
- return roles;
- }
- public void setRoles(String roles) {
- this.roles = roles;
- }
- public String getDcWork() {
- return dcWork;
- }
- public void setDcWork(String dcWork) {
- this.dcWork = dcWork;
- }
- public Integer getDcNum() {
- return dcNum;
- }
- public void setDcNum(Integer dcNum) {
- this.dcNum = dcNum;
- }
- }
|