mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 08:20:31 +08:00
chore: add maven-ninca-common-component-organization module
- Decompiled from ninca-common-component-organization-V2.9.2_20210730.jar - 4 sub-modules: web, service, data, interface (564 Java files) - Contains POST /component/person/detail implementation - floorList assembled via elevatorFeignClient.listByImageId()
This commit is contained in:
-28
@@ -1,28 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class AddPersonLabelDTO {
|
||||
private String labelId;
|
||||
private List<String> personIds;
|
||||
|
||||
public String getLabelId() {
|
||||
return this.labelId;
|
||||
}
|
||||
|
||||
public void setLabelId(String labelId) {
|
||||
this.labelId = labelId;
|
||||
}
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
}
|
||||
|
||||
-28
@@ -1,28 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class AddPersonOrgDTO {
|
||||
private String organizationId;
|
||||
private List<String> personIds;
|
||||
|
||||
public String getOrganizationId() {
|
||||
return this.organizationId;
|
||||
}
|
||||
|
||||
public void setOrganizationId(String organizationId) {
|
||||
this.organizationId = organizationId;
|
||||
}
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
}
|
||||
|
||||
-28
@@ -1,28 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class AddUnitAreaDTO {
|
||||
private String areaId;
|
||||
private List<String> unitIds;
|
||||
|
||||
public String getAreaId() {
|
||||
return this.areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(String areaId) {
|
||||
this.areaId = areaId;
|
||||
}
|
||||
|
||||
public List<String> getUnitIds() {
|
||||
return this.unitIds;
|
||||
}
|
||||
|
||||
public void setUnitIds(List<String> unitIds) {
|
||||
this.unitIds = unitIds;
|
||||
}
|
||||
}
|
||||
|
||||
-82
@@ -1,82 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class AreaTypeQueryDTO {
|
||||
private List<String> ids;
|
||||
private String name;
|
||||
private String code;
|
||||
private List<String> codes;
|
||||
private String businessId;
|
||||
private Integer hasLowerLevel;
|
||||
private Integer status;
|
||||
private Integer hasDefault;
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Integer getHasLowerLevel() {
|
||||
return this.hasLowerLevel;
|
||||
}
|
||||
|
||||
public void setHasLowerLevel(Integer hasLowerLevel) {
|
||||
this.hasLowerLevel = hasLowerLevel;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getHasDefault() {
|
||||
return this.hasDefault;
|
||||
}
|
||||
|
||||
public void setHasDefault(Integer hasDefault) {
|
||||
this.hasDefault = hasDefault;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public List<String> getCodes() {
|
||||
return this.codes;
|
||||
}
|
||||
|
||||
public void setCodes(List<String> codes) {
|
||||
this.codes = codes;
|
||||
}
|
||||
}
|
||||
|
||||
-122
@@ -1,122 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Set;
|
||||
|
||||
public class CommonRecordQueryDTO
|
||||
implements Serializable {
|
||||
private String businessId;
|
||||
private Set<String> devices;
|
||||
private Set<String> controlTaskIds;
|
||||
private String controlTypeCode;
|
||||
private String controlTaskName;
|
||||
private Long startTime;
|
||||
private Long endTime;
|
||||
private Integer pageNo;
|
||||
private Integer pageSize;
|
||||
private String userName;
|
||||
private String userId;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public Set<String> getDevices() {
|
||||
return this.devices;
|
||||
}
|
||||
|
||||
public Set<String> getControlTaskIds() {
|
||||
return this.controlTaskIds;
|
||||
}
|
||||
|
||||
public String getControlTypeCode() {
|
||||
return this.controlTypeCode;
|
||||
}
|
||||
|
||||
public String getControlTaskName() {
|
||||
return this.controlTaskName;
|
||||
}
|
||||
|
||||
public Long getStartTime() {
|
||||
return this.startTime;
|
||||
}
|
||||
|
||||
public Long getEndTime() {
|
||||
return this.endTime;
|
||||
}
|
||||
|
||||
public Integer getPageNo() {
|
||||
return this.pageNo;
|
||||
}
|
||||
|
||||
public Integer getPageSize() {
|
||||
return this.pageSize;
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
return this.userName;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public CommonRecordQueryDTO setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
return this;
|
||||
}
|
||||
|
||||
public CommonRecordQueryDTO setDevices(Set<String> devices) {
|
||||
this.devices = devices;
|
||||
return this;
|
||||
}
|
||||
|
||||
public CommonRecordQueryDTO setControlTaskIds(Set<String> controlTaskIds) {
|
||||
this.controlTaskIds = controlTaskIds;
|
||||
return this;
|
||||
}
|
||||
|
||||
public CommonRecordQueryDTO setControlTypeCode(String controlTypeCode) {
|
||||
this.controlTypeCode = controlTypeCode;
|
||||
return this;
|
||||
}
|
||||
|
||||
public CommonRecordQueryDTO setControlTaskName(String controlTaskName) {
|
||||
this.controlTaskName = controlTaskName;
|
||||
return this;
|
||||
}
|
||||
|
||||
public CommonRecordQueryDTO setStartTime(Long startTime) {
|
||||
this.startTime = startTime;
|
||||
return this;
|
||||
}
|
||||
|
||||
public CommonRecordQueryDTO setEndTime(Long endTime) {
|
||||
this.endTime = endTime;
|
||||
return this;
|
||||
}
|
||||
|
||||
public CommonRecordQueryDTO setPageNo(Integer pageNo) {
|
||||
this.pageNo = pageNo;
|
||||
return this;
|
||||
}
|
||||
|
||||
public CommonRecordQueryDTO setPageSize(Integer pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
return this;
|
||||
}
|
||||
|
||||
public CommonRecordQueryDTO setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
return this;
|
||||
}
|
||||
|
||||
public CommonRecordQueryDTO setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
||||
-101
@@ -1,101 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
public class DelGroupPersonDTO {
|
||||
private Collection<String> ids;
|
||||
private String imageStoreId;
|
||||
private List<String> imageIds;
|
||||
private Collection<String> imageStoreIds;
|
||||
private String personId;
|
||||
private Collection<String> personIds;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private Integer expiryBeginDateStatus;
|
||||
private Integer expiryEndDateStatus;
|
||||
|
||||
public List<String> getImageIds() {
|
||||
return this.imageIds;
|
||||
}
|
||||
|
||||
public void setImageIds(List<String> imageIds) {
|
||||
this.imageIds = imageIds;
|
||||
}
|
||||
|
||||
public Collection<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(Collection<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public Collection<String> getImageStoreIds() {
|
||||
return this.imageStoreIds;
|
||||
}
|
||||
|
||||
public void setImageStoreIds(Collection<String> imageStoreIds) {
|
||||
this.imageStoreIds = imageStoreIds;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public Collection<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(Collection<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Integer getExpiryBeginDateStatus() {
|
||||
return this.expiryBeginDateStatus;
|
||||
}
|
||||
|
||||
public void setExpiryBeginDateStatus(Integer expiryBeginDateStatus) {
|
||||
this.expiryBeginDateStatus = expiryBeginDateStatus;
|
||||
}
|
||||
|
||||
public Integer getExpiryEndDateStatus() {
|
||||
return this.expiryEndDateStatus;
|
||||
}
|
||||
|
||||
public void setExpiryEndDateStatus(Integer expiryEndDateStatus) {
|
||||
this.expiryEndDateStatus = expiryEndDateStatus;
|
||||
}
|
||||
}
|
||||
|
||||
-28
@@ -1,28 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class DelPersonLabelDTO {
|
||||
private String labelId;
|
||||
private List<String> personIds;
|
||||
|
||||
public String getLabelId() {
|
||||
return this.labelId;
|
||||
}
|
||||
|
||||
public void setLabelId(String labelId) {
|
||||
this.labelId = labelId;
|
||||
}
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
}
|
||||
|
||||
-28
@@ -1,28 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class DelPersonOrgDTO {
|
||||
private String organizationId;
|
||||
private List<String> personIds;
|
||||
|
||||
public String getOrganizationId() {
|
||||
return this.organizationId;
|
||||
}
|
||||
|
||||
public void setOrganizationId(String organizationId) {
|
||||
this.organizationId = organizationId;
|
||||
}
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
}
|
||||
|
||||
-190
@@ -1,190 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class DevicePersonSyncLogDTO {
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String imageStoreId;
|
||||
private String personId;
|
||||
private String imageId;
|
||||
private String groupPersonRefId;
|
||||
private Integer status;
|
||||
private String code;
|
||||
private String errorMessage;
|
||||
private Long createTime;
|
||||
private Long lastUpdateTime;
|
||||
private Integer count;
|
||||
private Long lastPullTime;
|
||||
private Long lastReportTime;
|
||||
private String updateInfo;
|
||||
private Integer isDel;
|
||||
private List<String> imageStoreIds;
|
||||
private List<String> personIds;
|
||||
private List<String> imageIds;
|
||||
private List<String> groupPersonRefIds;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getGroupPersonRefId() {
|
||||
return this.groupPersonRefId;
|
||||
}
|
||||
|
||||
public void setGroupPersonRefId(String groupPersonRefId) {
|
||||
this.groupPersonRefId = groupPersonRefId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getErrorMessage() {
|
||||
return this.errorMessage;
|
||||
}
|
||||
|
||||
public void setErrorMessage(String errorMessage) {
|
||||
this.errorMessage = errorMessage;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public Integer getCount() {
|
||||
return this.count;
|
||||
}
|
||||
|
||||
public void setCount(Integer count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public Long getLastPullTime() {
|
||||
return this.lastPullTime;
|
||||
}
|
||||
|
||||
public void setLastPullTime(Long lastPullTime) {
|
||||
this.lastPullTime = lastPullTime;
|
||||
}
|
||||
|
||||
public Long getLastReportTime() {
|
||||
return this.lastReportTime;
|
||||
}
|
||||
|
||||
public void setLastReportTime(Long lastReportTime) {
|
||||
this.lastReportTime = lastReportTime;
|
||||
}
|
||||
|
||||
public String getUpdateInfo() {
|
||||
return this.updateInfo;
|
||||
}
|
||||
|
||||
public void setUpdateInfo(String updateInfo) {
|
||||
this.updateInfo = updateInfo;
|
||||
}
|
||||
|
||||
public Integer getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Integer isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public List<String> getImageStoreIds() {
|
||||
return this.imageStoreIds;
|
||||
}
|
||||
|
||||
public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
this.imageStoreIds = imageStoreIds;
|
||||
}
|
||||
|
||||
public List<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(List<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
|
||||
public List<String> getImageIds() {
|
||||
return this.imageIds;
|
||||
}
|
||||
|
||||
public void setImageIds(List<String> imageIds) {
|
||||
this.imageIds = imageIds;
|
||||
}
|
||||
|
||||
public List<String> getGroupPersonRefIds() {
|
||||
return this.groupPersonRefIds;
|
||||
}
|
||||
|
||||
public void setGroupPersonRefIds(List<String> groupPersonRefIds) {
|
||||
this.groupPersonRefIds = groupPersonRefIds;
|
||||
}
|
||||
}
|
||||
|
||||
-82
@@ -1,82 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class DevicePersonSyncLogQueryDTO {
|
||||
private String deviceId;
|
||||
private String personName;
|
||||
private String imageStoreId;
|
||||
private Integer status;
|
||||
private long lastUpdateTime;
|
||||
private List<String> imageStoreIds;
|
||||
private Integer personStatus;
|
||||
private boolean supportValidDate;
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public List<String> getImageStoreIds() {
|
||||
return this.imageStoreIds;
|
||||
}
|
||||
|
||||
public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
this.imageStoreIds = imageStoreIds;
|
||||
}
|
||||
|
||||
public Integer getPersonStatus() {
|
||||
return this.personStatus;
|
||||
}
|
||||
|
||||
public void setPersonStatus(Integer personStatus) {
|
||||
this.personStatus = personStatus;
|
||||
}
|
||||
|
||||
public boolean isSupportValidDate() {
|
||||
return this.supportValidDate;
|
||||
}
|
||||
|
||||
public void setSupportValidDate(boolean supportValidDate) {
|
||||
this.supportValidDate = supportValidDate;
|
||||
}
|
||||
}
|
||||
|
||||
-230
@@ -1,230 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class GetsAreaDTO {
|
||||
private String id;
|
||||
private String name;
|
||||
private String parentId;
|
||||
private Short isDel;
|
||||
private String businessId;
|
||||
private String typeId;
|
||||
private List<String> typeIds;
|
||||
private List<String> ids;
|
||||
private List<String> parentIds;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
private String ext4;
|
||||
private String ext5;
|
||||
private String ext6;
|
||||
private String ext7;
|
||||
private String ext8;
|
||||
private String ext9;
|
||||
private String ext10;
|
||||
private String ext11;
|
||||
private String ext12;
|
||||
private String ext13;
|
||||
private String ext14;
|
||||
private String ext15;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getTypeId() {
|
||||
return this.typeId;
|
||||
}
|
||||
|
||||
public void setTypeId(String typeId) {
|
||||
this.typeId = typeId;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
|
||||
public String getExt4() {
|
||||
return this.ext4;
|
||||
}
|
||||
|
||||
public void setExt4(String ext4) {
|
||||
this.ext4 = ext4;
|
||||
}
|
||||
|
||||
public String getExt5() {
|
||||
return this.ext5;
|
||||
}
|
||||
|
||||
public void setExt5(String ext5) {
|
||||
this.ext5 = ext5;
|
||||
}
|
||||
|
||||
public String getExt6() {
|
||||
return this.ext6;
|
||||
}
|
||||
|
||||
public void setExt6(String ext6) {
|
||||
this.ext6 = ext6;
|
||||
}
|
||||
|
||||
public String getExt7() {
|
||||
return this.ext7;
|
||||
}
|
||||
|
||||
public void setExt7(String ext7) {
|
||||
this.ext7 = ext7;
|
||||
}
|
||||
|
||||
public String getExt8() {
|
||||
return this.ext8;
|
||||
}
|
||||
|
||||
public void setExt8(String ext8) {
|
||||
this.ext8 = ext8;
|
||||
}
|
||||
|
||||
public String getExt9() {
|
||||
return this.ext9;
|
||||
}
|
||||
|
||||
public void setExt9(String ext9) {
|
||||
this.ext9 = ext9;
|
||||
}
|
||||
|
||||
public String getExt10() {
|
||||
return this.ext10;
|
||||
}
|
||||
|
||||
public void setExt10(String ext10) {
|
||||
this.ext10 = ext10;
|
||||
}
|
||||
|
||||
public String getExt11() {
|
||||
return this.ext11;
|
||||
}
|
||||
|
||||
public void setExt11(String ext11) {
|
||||
this.ext11 = ext11;
|
||||
}
|
||||
|
||||
public String getExt12() {
|
||||
return this.ext12;
|
||||
}
|
||||
|
||||
public void setExt12(String ext12) {
|
||||
this.ext12 = ext12;
|
||||
}
|
||||
|
||||
public String getExt13() {
|
||||
return this.ext13;
|
||||
}
|
||||
|
||||
public void setExt13(String ext13) {
|
||||
this.ext13 = ext13;
|
||||
}
|
||||
|
||||
public String getExt14() {
|
||||
return this.ext14;
|
||||
}
|
||||
|
||||
public void setExt14(String ext14) {
|
||||
this.ext14 = ext14;
|
||||
}
|
||||
|
||||
public String getExt15() {
|
||||
return this.ext15;
|
||||
}
|
||||
|
||||
public void setExt15(String ext15) {
|
||||
this.ext15 = ext15;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public List<String> getParentIds() {
|
||||
return this.parentIds;
|
||||
}
|
||||
|
||||
public void setParentIds(List<String> parentIds) {
|
||||
this.parentIds = parentIds;
|
||||
}
|
||||
|
||||
public List<String> getTypeIds() {
|
||||
return this.typeIds;
|
||||
}
|
||||
|
||||
public void setTypeIds(List<String> typeIds) {
|
||||
this.typeIds = typeIds;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "GetsAreaDTO{id='" + this.id + '\'' + ", name='" + this.name + '\'' + ", parentId='" + this.parentId + '\'' + ", isDel=" + this.isDel + ", businessId='" + this.businessId + '\'' + ", typeId='" + this.typeId + '\'' + ", typeIds=" + this.typeIds + ", ids=" + this.ids + ", parentIds=" + this.parentIds + ", ext1='" + this.ext1 + '\'' + ", ext2='" + this.ext2 + '\'' + ", ext3='" + this.ext3 + '\'' + ", ext4='" + this.ext4 + '\'' + ", ext5='" + this.ext5 + '\'' + ", ext6='" + this.ext6 + '\'' + ", ext7='" + this.ext7 + '\'' + ", ext8='" + this.ext8 + '\'' + ", ext9='" + this.ext9 + '\'' + ", ext10='" + this.ext10 + '\'' + ", ext11='" + this.ext11 + '\'' + ", ext12='" + this.ext12 + '\'' + ", ext13='" + this.ext13 + '\'' + ", ext14='" + this.ext14 + '\'' + ", ext15='" + this.ext15 + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
-55
@@ -1,55 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
public class GetsImageStoreAssociatedDTO {
|
||||
private String imageStoreId;
|
||||
private String associatedObjectId;
|
||||
private Collection<String> associatedObjectIds;
|
||||
private Integer associatedObjectIdType;
|
||||
private Integer associatedAction;
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getAssociatedObjectId() {
|
||||
return this.associatedObjectId;
|
||||
}
|
||||
|
||||
public void setAssociatedObjectId(String associatedObjectId) {
|
||||
this.associatedObjectId = associatedObjectId;
|
||||
}
|
||||
|
||||
public Collection<String> getAssociatedObjectIds() {
|
||||
return this.associatedObjectIds;
|
||||
}
|
||||
|
||||
public void setAssociatedObjectIds(Collection<String> associatedObjectIds) {
|
||||
this.associatedObjectIds = associatedObjectIds;
|
||||
}
|
||||
|
||||
public Integer getAssociatedObjectIdType() {
|
||||
return this.associatedObjectIdType;
|
||||
}
|
||||
|
||||
public void setAssociatedObjectIdType(Integer associatedObjectIdType) {
|
||||
this.associatedObjectIdType = associatedObjectIdType;
|
||||
}
|
||||
|
||||
public Integer getAssociatedAction() {
|
||||
return this.associatedAction;
|
||||
}
|
||||
|
||||
public void setAssociatedAction(Integer associatedAction) {
|
||||
this.associatedAction = associatedAction;
|
||||
}
|
||||
}
|
||||
|
||||
-73
@@ -1,73 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class GetsLabelDTO {
|
||||
private String id;
|
||||
private String name;
|
||||
private Short isDel;
|
||||
private Short addType;
|
||||
private String code;
|
||||
private String businessId;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public Short getAddType() {
|
||||
return this.addType;
|
||||
}
|
||||
|
||||
public void setAddType(Short addType) {
|
||||
this.addType = addType;
|
||||
}
|
||||
}
|
||||
|
||||
-361
@@ -1,361 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class GetsOrganizationDTO {
|
||||
private String id;
|
||||
private String name;
|
||||
private String parentId;
|
||||
private Short isDel;
|
||||
private String businessId;
|
||||
private String typeId;
|
||||
private List<String> typeIds;
|
||||
private List<String> ids;
|
||||
private List<String> parentIds;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
private String ext4;
|
||||
private String ext5;
|
||||
private String ext6;
|
||||
private String ext7;
|
||||
private String ext8;
|
||||
private String ext9;
|
||||
private String ext10;
|
||||
private String ext11;
|
||||
private String ext12;
|
||||
private String ext13;
|
||||
private String ext14;
|
||||
private String ext15;
|
||||
private String ext16;
|
||||
private String ext17;
|
||||
private String ext18;
|
||||
private String ext19;
|
||||
private String ext20;
|
||||
private String ext21;
|
||||
private String ext22;
|
||||
private String ext23;
|
||||
private String ext24;
|
||||
private String ext25;
|
||||
private String ext26;
|
||||
private String ext27;
|
||||
private String ext28;
|
||||
private String ext29;
|
||||
private String ext30;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getTypeId() {
|
||||
return this.typeId;
|
||||
}
|
||||
|
||||
public void setTypeId(String typeId) {
|
||||
this.typeId = typeId;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
|
||||
public String getExt4() {
|
||||
return this.ext4;
|
||||
}
|
||||
|
||||
public void setExt4(String ext4) {
|
||||
this.ext4 = ext4;
|
||||
}
|
||||
|
||||
public String getExt5() {
|
||||
return this.ext5;
|
||||
}
|
||||
|
||||
public void setExt5(String ext5) {
|
||||
this.ext5 = ext5;
|
||||
}
|
||||
|
||||
public String getExt6() {
|
||||
return this.ext6;
|
||||
}
|
||||
|
||||
public void setExt6(String ext6) {
|
||||
this.ext6 = ext6;
|
||||
}
|
||||
|
||||
public String getExt7() {
|
||||
return this.ext7;
|
||||
}
|
||||
|
||||
public void setExt7(String ext7) {
|
||||
this.ext7 = ext7;
|
||||
}
|
||||
|
||||
public String getExt8() {
|
||||
return this.ext8;
|
||||
}
|
||||
|
||||
public void setExt8(String ext8) {
|
||||
this.ext8 = ext8;
|
||||
}
|
||||
|
||||
public String getExt9() {
|
||||
return this.ext9;
|
||||
}
|
||||
|
||||
public void setExt9(String ext9) {
|
||||
this.ext9 = ext9;
|
||||
}
|
||||
|
||||
public String getExt10() {
|
||||
return this.ext10;
|
||||
}
|
||||
|
||||
public void setExt10(String ext10) {
|
||||
this.ext10 = ext10;
|
||||
}
|
||||
|
||||
public String getExt11() {
|
||||
return this.ext11;
|
||||
}
|
||||
|
||||
public void setExt11(String ext11) {
|
||||
this.ext11 = ext11;
|
||||
}
|
||||
|
||||
public String getExt12() {
|
||||
return this.ext12;
|
||||
}
|
||||
|
||||
public void setExt12(String ext12) {
|
||||
this.ext12 = ext12;
|
||||
}
|
||||
|
||||
public String getExt13() {
|
||||
return this.ext13;
|
||||
}
|
||||
|
||||
public void setExt13(String ext13) {
|
||||
this.ext13 = ext13;
|
||||
}
|
||||
|
||||
public String getExt14() {
|
||||
return this.ext14;
|
||||
}
|
||||
|
||||
public void setExt14(String ext14) {
|
||||
this.ext14 = ext14;
|
||||
}
|
||||
|
||||
public String getExt15() {
|
||||
return this.ext15;
|
||||
}
|
||||
|
||||
public void setExt15(String ext15) {
|
||||
this.ext15 = ext15;
|
||||
}
|
||||
|
||||
public String getExt16() {
|
||||
return this.ext16;
|
||||
}
|
||||
|
||||
public void setExt16(String ext16) {
|
||||
this.ext16 = ext16;
|
||||
}
|
||||
|
||||
public String getExt17() {
|
||||
return this.ext17;
|
||||
}
|
||||
|
||||
public void setExt17(String ext17) {
|
||||
this.ext17 = ext17;
|
||||
}
|
||||
|
||||
public String getExt18() {
|
||||
return this.ext18;
|
||||
}
|
||||
|
||||
public void setExt18(String ext18) {
|
||||
this.ext18 = ext18;
|
||||
}
|
||||
|
||||
public String getExt19() {
|
||||
return this.ext19;
|
||||
}
|
||||
|
||||
public void setExt19(String ext19) {
|
||||
this.ext19 = ext19;
|
||||
}
|
||||
|
||||
public String getExt20() {
|
||||
return this.ext20;
|
||||
}
|
||||
|
||||
public void setExt20(String ext20) {
|
||||
this.ext20 = ext20;
|
||||
}
|
||||
|
||||
public String getExt21() {
|
||||
return this.ext21;
|
||||
}
|
||||
|
||||
public void setExt21(String ext21) {
|
||||
this.ext21 = ext21;
|
||||
}
|
||||
|
||||
public String getExt22() {
|
||||
return this.ext22;
|
||||
}
|
||||
|
||||
public void setExt22(String ext22) {
|
||||
this.ext22 = ext22;
|
||||
}
|
||||
|
||||
public String getExt23() {
|
||||
return this.ext23;
|
||||
}
|
||||
|
||||
public void setExt23(String ext23) {
|
||||
this.ext23 = ext23;
|
||||
}
|
||||
|
||||
public String getExt24() {
|
||||
return this.ext24;
|
||||
}
|
||||
|
||||
public void setExt24(String ext24) {
|
||||
this.ext24 = ext24;
|
||||
}
|
||||
|
||||
public String getExt25() {
|
||||
return this.ext25;
|
||||
}
|
||||
|
||||
public void setExt25(String ext25) {
|
||||
this.ext25 = ext25;
|
||||
}
|
||||
|
||||
public String getExt26() {
|
||||
return this.ext26;
|
||||
}
|
||||
|
||||
public void setExt26(String ext26) {
|
||||
this.ext26 = ext26;
|
||||
}
|
||||
|
||||
public String getExt27() {
|
||||
return this.ext27;
|
||||
}
|
||||
|
||||
public void setExt27(String ext27) {
|
||||
this.ext27 = ext27;
|
||||
}
|
||||
|
||||
public String getExt28() {
|
||||
return this.ext28;
|
||||
}
|
||||
|
||||
public void setExt28(String ext28) {
|
||||
this.ext28 = ext28;
|
||||
}
|
||||
|
||||
public String getExt29() {
|
||||
return this.ext29;
|
||||
}
|
||||
|
||||
public void setExt29(String ext29) {
|
||||
this.ext29 = ext29;
|
||||
}
|
||||
|
||||
public String getExt30() {
|
||||
return this.ext30;
|
||||
}
|
||||
|
||||
public void setExt30(String ext30) {
|
||||
this.ext30 = ext30;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public List<String> getParentIds() {
|
||||
return this.parentIds;
|
||||
}
|
||||
|
||||
public void setParentIds(List<String> parentIds) {
|
||||
this.parentIds = parentIds;
|
||||
}
|
||||
|
||||
public List<String> getTypeIds() {
|
||||
return this.typeIds;
|
||||
}
|
||||
|
||||
public void setTypeIds(List<String> typeIds) {
|
||||
this.typeIds = typeIds;
|
||||
}
|
||||
}
|
||||
|
||||
-146
@@ -1,146 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
public class GroupPersonPageParamDTO {
|
||||
private String imageStoreId;
|
||||
private Collection<String> imageStoreIds;
|
||||
private String personId;
|
||||
private String name;
|
||||
private Collection<String> personIds;
|
||||
private List<String> labelIds;
|
||||
private List<String> organizationIds;
|
||||
private Integer ageStart;
|
||||
private Integer ageEnd;
|
||||
private Long groupTimeStart;
|
||||
private Long groupTimeEnd;
|
||||
private Short expiryStatus;
|
||||
private Short status;
|
||||
private List<String> delPersonIds;
|
||||
private Integer isElevator;
|
||||
|
||||
public Integer getIsElevator() {
|
||||
return this.isElevator;
|
||||
}
|
||||
|
||||
public void setIsElevator(Integer isElevator) {
|
||||
this.isElevator = isElevator;
|
||||
}
|
||||
|
||||
public List<String> getDelPersonIds() {
|
||||
return this.delPersonIds;
|
||||
}
|
||||
|
||||
public void setDelPersonIds(List<String> delPersonIds) {
|
||||
this.delPersonIds = delPersonIds;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public Collection<String> getImageStoreIds() {
|
||||
return this.imageStoreIds;
|
||||
}
|
||||
|
||||
public void setImageStoreIds(Collection<String> imageStoreIds) {
|
||||
this.imageStoreIds = imageStoreIds;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public Collection<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(Collection<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
|
||||
public List<String> getLabelIds() {
|
||||
return this.labelIds;
|
||||
}
|
||||
|
||||
public void setLabelIds(List<String> labelIds) {
|
||||
this.labelIds = labelIds;
|
||||
}
|
||||
|
||||
public List<String> getOrganizationIds() {
|
||||
return this.organizationIds;
|
||||
}
|
||||
|
||||
public void setOrganizationIds(List<String> organizationIds) {
|
||||
this.organizationIds = organizationIds;
|
||||
}
|
||||
|
||||
public Integer getAgeStart() {
|
||||
return this.ageStart;
|
||||
}
|
||||
|
||||
public void setAgeStart(Integer ageStart) {
|
||||
this.ageStart = ageStart;
|
||||
}
|
||||
|
||||
public Integer getAgeEnd() {
|
||||
return this.ageEnd;
|
||||
}
|
||||
|
||||
public void setAgeEnd(Integer ageEnd) {
|
||||
this.ageEnd = ageEnd;
|
||||
}
|
||||
|
||||
public Long getGroupTimeStart() {
|
||||
return this.groupTimeStart;
|
||||
}
|
||||
|
||||
public void setGroupTimeStart(Long groupTimeStart) {
|
||||
this.groupTimeStart = groupTimeStart;
|
||||
}
|
||||
|
||||
public Long getGroupTimeEnd() {
|
||||
return this.groupTimeEnd;
|
||||
}
|
||||
|
||||
public void setGroupTimeEnd(Long groupTimeEnd) {
|
||||
this.groupTimeEnd = groupTimeEnd;
|
||||
}
|
||||
|
||||
public Short getExpiryStatus() {
|
||||
return this.expiryStatus;
|
||||
}
|
||||
|
||||
public void setExpiryStatus(Short expiryStatus) {
|
||||
this.expiryStatus = expiryStatus;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
-152
@@ -1,152 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class GroupPersonPageResultDTO {
|
||||
private String imageStoreId;
|
||||
private String personId;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private String validDateCron;
|
||||
private Short expiryStatus;
|
||||
private String imageId;
|
||||
private String name;
|
||||
private String comparePicture;
|
||||
private String icCardNo;
|
||||
private Integer age;
|
||||
private Short gender;
|
||||
private Long groupTime;
|
||||
private Short status;
|
||||
private String message;
|
||||
private String errorMessage;
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public Long getExpiryBeginDate() {
|
||||
return this.expiryBeginDate;
|
||||
}
|
||||
|
||||
public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
this.expiryBeginDate = expiryBeginDate;
|
||||
}
|
||||
|
||||
public Long getExpiryEndDate() {
|
||||
return this.expiryEndDate;
|
||||
}
|
||||
|
||||
public void setExpiryEndDate(Long expiryEndDate) {
|
||||
this.expiryEndDate = expiryEndDate;
|
||||
}
|
||||
|
||||
public String getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(String validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
|
||||
public Short getExpiryStatus() {
|
||||
return this.expiryStatus;
|
||||
}
|
||||
|
||||
public void setExpiryStatus(Short expiryStatus) {
|
||||
this.expiryStatus = expiryStatus;
|
||||
}
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getComparePicture() {
|
||||
return this.comparePicture;
|
||||
}
|
||||
|
||||
public void setComparePicture(String comparePicture) {
|
||||
this.comparePicture = comparePicture;
|
||||
}
|
||||
|
||||
public Integer getAge() {
|
||||
return this.age;
|
||||
}
|
||||
|
||||
public void setAge(Integer age) {
|
||||
this.age = age;
|
||||
}
|
||||
|
||||
public Short getGender() {
|
||||
return this.gender;
|
||||
}
|
||||
|
||||
public void setGender(Short gender) {
|
||||
this.gender = gender;
|
||||
}
|
||||
|
||||
public Long getGroupTime() {
|
||||
return this.groupTime;
|
||||
}
|
||||
|
||||
public void setGroupTime(Long groupTime) {
|
||||
this.groupTime = groupTime;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return this.message;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public String getErrorMessage() {
|
||||
return this.errorMessage;
|
||||
}
|
||||
|
||||
public void setErrorMessage(String errorMessage) {
|
||||
this.errorMessage = errorMessage;
|
||||
}
|
||||
|
||||
public String getIcCardNo() {
|
||||
return this.icCardNo;
|
||||
}
|
||||
|
||||
public void setIcCardNo(String icCardNo) {
|
||||
this.icCardNo = icCardNo;
|
||||
}
|
||||
}
|
||||
|
||||
-38
@@ -1,38 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import cn.cloudwalk.data.organization.entity.GroupPersonRef;
|
||||
|
||||
public class GroupPersonRefDTO
|
||||
extends GroupPersonRef {
|
||||
private String syncLogId;
|
||||
private String imageId;
|
||||
private String comparePicture;
|
||||
|
||||
public String getSyncLogId() {
|
||||
return this.syncLogId;
|
||||
}
|
||||
|
||||
public void setSyncLogId(String syncLogId) {
|
||||
this.syncLogId = syncLogId;
|
||||
}
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getComparePicture() {
|
||||
return this.comparePicture;
|
||||
}
|
||||
|
||||
public void setComparePicture(String comparePicture) {
|
||||
this.comparePicture = comparePicture;
|
||||
}
|
||||
}
|
||||
|
||||
-46
@@ -1,46 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class GroupPersonSynData {
|
||||
private List<String> addPersonIds;
|
||||
private List<String> delPersonIds;
|
||||
private String personId;
|
||||
private String oldImageId;
|
||||
|
||||
public List<String> getAddPersonIds() {
|
||||
return this.addPersonIds;
|
||||
}
|
||||
|
||||
public void setAddPersonIds(List<String> addPersonIds) {
|
||||
this.addPersonIds = addPersonIds;
|
||||
}
|
||||
|
||||
public List<String> getDelPersonIds() {
|
||||
return this.delPersonIds;
|
||||
}
|
||||
|
||||
public void setDelPersonIds(List<String> delPersonIds) {
|
||||
this.delPersonIds = delPersonIds;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getOldImageId() {
|
||||
return this.oldImageId;
|
||||
}
|
||||
|
||||
public void setOldImageId(String oldImageId) {
|
||||
this.oldImageId = oldImageId;
|
||||
}
|
||||
}
|
||||
|
||||
-81
@@ -1,81 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class ImageInfoDto {
|
||||
private Integer height;
|
||||
private Integer width;
|
||||
private String base64;
|
||||
private BigDecimal scale;
|
||||
private Integer heightCompress;
|
||||
private Integer widthCompress;
|
||||
private String base64Compress;
|
||||
|
||||
public Integer getHeight() {
|
||||
return this.height;
|
||||
}
|
||||
|
||||
public void setHeight(Integer height) {
|
||||
this.height = height;
|
||||
}
|
||||
|
||||
public Integer getWidth() {
|
||||
return this.width;
|
||||
}
|
||||
|
||||
public void setWidth(Integer width) {
|
||||
this.width = width;
|
||||
}
|
||||
|
||||
public String getBase64() {
|
||||
return this.base64;
|
||||
}
|
||||
|
||||
public void setBase64(String base64) {
|
||||
this.base64 = base64;
|
||||
}
|
||||
|
||||
public BigDecimal getScale() {
|
||||
return this.scale;
|
||||
}
|
||||
|
||||
public void setScale(BigDecimal scale) {
|
||||
this.scale = scale;
|
||||
}
|
||||
|
||||
public Integer getHeightCompress() {
|
||||
return this.heightCompress;
|
||||
}
|
||||
|
||||
public void setHeightCompress(Integer heightCompress) {
|
||||
this.heightCompress = heightCompress;
|
||||
}
|
||||
|
||||
public Integer getWidthCompress() {
|
||||
return this.widthCompress;
|
||||
}
|
||||
|
||||
public void setWidthCompress(Integer widthCompress) {
|
||||
this.widthCompress = widthCompress;
|
||||
}
|
||||
|
||||
public String getBase64Compress() {
|
||||
return this.base64Compress;
|
||||
}
|
||||
|
||||
public void setBase64Compress(String base64Compress) {
|
||||
this.base64Compress = base64Compress;
|
||||
}
|
||||
|
||||
public void initCompressValue(int compressWidth) {
|
||||
if (this.width > compressWidth) {
|
||||
this.scale = new BigDecimal(compressWidth).divide(new BigDecimal(this.width), 5, 4);
|
||||
this.widthCompress = compressWidth;
|
||||
this.heightCompress = new BigDecimal(this.height).multiply(this.scale).setScale(0, 0).intValue();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
-26
@@ -1,26 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class ImageStoreCountDTO {
|
||||
private String id;
|
||||
private Integer count;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getCount() {
|
||||
return this.count;
|
||||
}
|
||||
|
||||
public void setCount(Integer count) {
|
||||
this.count = count;
|
||||
}
|
||||
}
|
||||
|
||||
-53
@@ -1,53 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class ImgStoreAuditUserQueryDto {
|
||||
private String businessId;
|
||||
private String personCode;
|
||||
private String userName;
|
||||
private String phone;
|
||||
private String email;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getPersonCode() {
|
||||
return this.personCode;
|
||||
}
|
||||
|
||||
public void setPersonCode(String personCode) {
|
||||
this.personCode = personCode;
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
return this.userName;
|
||||
}
|
||||
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return this.phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.email = name;
|
||||
}
|
||||
}
|
||||
|
||||
-50
@@ -1,50 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class ImgStoreOrgBatchUpdateDTO {
|
||||
private List<String> ids;
|
||||
private Long lastUpdateTime;
|
||||
private Short isDel;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "ImgStoreOrgBatchUpdateDTO{ids=" + this.ids + ", lastUpdateTime=" + this.lastUpdateTime + ", isDel=" + this.isDel + ", lastUpdateUserId='" + this.lastUpdateUserId + '\'' + '}';
|
||||
}
|
||||
}
|
||||
|
||||
-62
@@ -1,62 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class ImgStorePersonAuditQueryDto {
|
||||
private String businessId;
|
||||
private String name;
|
||||
private Short auditStatus;
|
||||
private Short source;
|
||||
private Long startTime;
|
||||
private Long endTime;
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Short getAuditStatus() {
|
||||
return this.auditStatus;
|
||||
}
|
||||
|
||||
public void setAuditStatus(Short auditStatus) {
|
||||
this.auditStatus = auditStatus;
|
||||
}
|
||||
|
||||
public Short getSource() {
|
||||
return this.source;
|
||||
}
|
||||
|
||||
public void setSource(Short source) {
|
||||
this.source = source;
|
||||
}
|
||||
|
||||
public Long getStartTime() {
|
||||
return this.startTime;
|
||||
}
|
||||
|
||||
public void setStartTime(Long startTime) {
|
||||
this.startTime = startTime;
|
||||
}
|
||||
|
||||
public Long getEndTime() {
|
||||
return this.endTime;
|
||||
}
|
||||
|
||||
public void setEndTime(Long endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
}
|
||||
|
||||
-55
@@ -1,55 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class ImgStorePersonBatchUpdateDto {
|
||||
private List<String> ids;
|
||||
private Short status;
|
||||
private Long lastUpdateTime;
|
||||
private Short isDel;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
}
|
||||
|
||||
-28
@@ -1,28 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class ImgStorePersonDeleteDto {
|
||||
private List<String> ids;
|
||||
private Long lastUpdateTime;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
}
|
||||
|
||||
-281
@@ -1,281 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
public class ImgStorePersonQueryDto {
|
||||
private String batchNo;
|
||||
private Integer switchStatus;
|
||||
private Long switchTime;
|
||||
private String businessId;
|
||||
private String phone;
|
||||
private Collection<String> phones;
|
||||
private Collection<String> ids;
|
||||
private String personCode;
|
||||
private Collection<String> personCodes;
|
||||
private String name;
|
||||
private String visitorName;
|
||||
private String userName;
|
||||
private Collection<String> userNames;
|
||||
private String email;
|
||||
private Collection<String> emails;
|
||||
private Short status;
|
||||
private String imageId;
|
||||
private List<String> organizationIds;
|
||||
private List<String> labelIds;
|
||||
private Collection<String> imageIds;
|
||||
private Short createSysAccount;
|
||||
private String sysAccountId;
|
||||
private Long lastSynTime;
|
||||
private String lastPersonId;
|
||||
private String icCardNo;
|
||||
private String icCardType;
|
||||
private Short isDel;
|
||||
private Short source;
|
||||
private Integer isElevator;
|
||||
private Long visitorExpireTime;
|
||||
|
||||
public Long getVisitorExpireTime() {
|
||||
return this.visitorExpireTime;
|
||||
}
|
||||
|
||||
public void setVisitorExpireTime(Long visitorExpireTime) {
|
||||
this.visitorExpireTime = visitorExpireTime;
|
||||
}
|
||||
|
||||
public String getVisitorName() {
|
||||
return this.visitorName;
|
||||
}
|
||||
|
||||
public void setVisitorName(String visitorName) {
|
||||
this.visitorName = visitorName;
|
||||
}
|
||||
|
||||
public Integer getIsElevator() {
|
||||
return this.isElevator;
|
||||
}
|
||||
|
||||
public void setIsElevator(Integer isElevator) {
|
||||
this.isElevator = isElevator;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Collection<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(Collection<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getPersonCode() {
|
||||
return this.personCode;
|
||||
}
|
||||
|
||||
public void setPersonCode(String personCode) {
|
||||
this.personCode = personCode;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public List<String> getOrganizationIds() {
|
||||
return this.organizationIds;
|
||||
}
|
||||
|
||||
public void setOrganizationIds(List<String> organizationIds) {
|
||||
this.organizationIds = organizationIds;
|
||||
}
|
||||
|
||||
public List<String> getLabelIds() {
|
||||
return this.labelIds;
|
||||
}
|
||||
|
||||
public void setLabelIds(List<String> labelIds) {
|
||||
this.labelIds = labelIds;
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return this.phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public Collection<String> getImageIds() {
|
||||
return this.imageIds;
|
||||
}
|
||||
|
||||
public void setImageIds(Collection<String> imageIds) {
|
||||
this.imageIds = imageIds;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
return this.userName;
|
||||
}
|
||||
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public Short getCreateSysAccount() {
|
||||
return this.createSysAccount;
|
||||
}
|
||||
|
||||
public void setCreateSysAccount(Short createSysAccount) {
|
||||
this.createSysAccount = createSysAccount;
|
||||
}
|
||||
|
||||
public String getSysAccountId() {
|
||||
return this.sysAccountId;
|
||||
}
|
||||
|
||||
public void setSysAccountId(String sysAccountId) {
|
||||
this.sysAccountId = sysAccountId;
|
||||
}
|
||||
|
||||
public Long getLastSynTime() {
|
||||
return this.lastSynTime;
|
||||
}
|
||||
|
||||
public void setLastSynTime(Long lastSynTime) {
|
||||
this.lastSynTime = lastSynTime;
|
||||
}
|
||||
|
||||
public String getLastPersonId() {
|
||||
return this.lastPersonId;
|
||||
}
|
||||
|
||||
public void setLastPersonId(String lastPersonId) {
|
||||
this.lastPersonId = lastPersonId;
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public Short getSource() {
|
||||
return this.source;
|
||||
}
|
||||
|
||||
public void setSource(Short source) {
|
||||
this.source = source;
|
||||
}
|
||||
|
||||
public Collection<String> getPhones() {
|
||||
return this.phones;
|
||||
}
|
||||
|
||||
public void setPhones(Collection<String> phones) {
|
||||
this.phones = phones;
|
||||
}
|
||||
|
||||
public Collection<String> getPersonCodes() {
|
||||
return this.personCodes;
|
||||
}
|
||||
|
||||
public void setPersonCodes(Collection<String> personCodes) {
|
||||
this.personCodes = personCodes;
|
||||
}
|
||||
|
||||
public Collection<String> getUserNames() {
|
||||
return this.userNames;
|
||||
}
|
||||
|
||||
public void setUserNames(Collection<String> userNames) {
|
||||
this.userNames = userNames;
|
||||
}
|
||||
|
||||
public Collection<String> getEmails() {
|
||||
return this.emails;
|
||||
}
|
||||
|
||||
public void setEmails(Collection<String> emails) {
|
||||
this.emails = emails;
|
||||
}
|
||||
|
||||
public String getIcCardNo() {
|
||||
return this.icCardNo;
|
||||
}
|
||||
|
||||
public void setIcCardNo(String icCardNo) {
|
||||
this.icCardNo = icCardNo;
|
||||
}
|
||||
|
||||
public String getIcCardType() {
|
||||
return this.icCardType;
|
||||
}
|
||||
|
||||
public void setIcCardType(String icCardType) {
|
||||
this.icCardType = icCardType;
|
||||
}
|
||||
|
||||
public String getBatchNo() {
|
||||
return this.batchNo;
|
||||
}
|
||||
|
||||
public void setBatchNo(String batchNo) {
|
||||
this.batchNo = batchNo;
|
||||
}
|
||||
|
||||
public Integer getSwitchStatus() {
|
||||
return this.switchStatus;
|
||||
}
|
||||
|
||||
public void setSwitchStatus(Integer switchStatus) {
|
||||
this.switchStatus = switchStatus;
|
||||
}
|
||||
|
||||
public Long getSwitchTime() {
|
||||
return this.switchTime;
|
||||
}
|
||||
|
||||
public void setSwitchTime(Long switchTime) {
|
||||
this.switchTime = switchTime;
|
||||
}
|
||||
}
|
||||
|
||||
-71
@@ -1,71 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class ImgStorePersonUniqueDto {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String userName;
|
||||
private String personCode;
|
||||
private String phone;
|
||||
private String email;
|
||||
private Short auditStatus;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
return this.userName;
|
||||
}
|
||||
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getPersonCode() {
|
||||
return this.personCode;
|
||||
}
|
||||
|
||||
public void setPersonCode(String personCode) {
|
||||
this.personCode = personCode;
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return this.phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public Short getAuditStatus() {
|
||||
return this.auditStatus;
|
||||
}
|
||||
|
||||
public void setAuditStatus(Short auditStatus) {
|
||||
this.auditStatus = auditStatus;
|
||||
}
|
||||
}
|
||||
|
||||
-26
@@ -1,26 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class LabelCountDTO {
|
||||
private String id;
|
||||
private Integer count;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getCount() {
|
||||
return this.count;
|
||||
}
|
||||
|
||||
public void setCount(Integer count) {
|
||||
this.count = count;
|
||||
}
|
||||
}
|
||||
|
||||
-37
@@ -1,37 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class LabelCriteriesDTO {
|
||||
private List<String> labelList;
|
||||
private Short isDel;
|
||||
private Short status;
|
||||
|
||||
public List<String> getLabelList() {
|
||||
return this.labelList;
|
||||
}
|
||||
|
||||
public void setLabelList(List<String> labelList) {
|
||||
this.labelList = labelList;
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
-26
@@ -1,26 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class OrgCountDTO {
|
||||
private String id;
|
||||
private Integer count;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getCount() {
|
||||
return this.count;
|
||||
}
|
||||
|
||||
public void setCount(Integer count) {
|
||||
this.count = count;
|
||||
}
|
||||
}
|
||||
|
||||
-37
@@ -1,37 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class OrgCriteriesDTO {
|
||||
private List<String> orgIds;
|
||||
private Short isDel;
|
||||
private Short status;
|
||||
|
||||
public List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
-61
@@ -1,61 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
public class OrgTreeDTO {
|
||||
private String id;
|
||||
private String name;
|
||||
private String typeId;
|
||||
private String parentId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public String getTypeId() {
|
||||
return this.typeId;
|
||||
}
|
||||
|
||||
public void setTypeId(String typeId) {
|
||||
this.typeId = typeId;
|
||||
}
|
||||
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) {
|
||||
return true;
|
||||
}
|
||||
if (o == null || this.getClass() != o.getClass()) {
|
||||
return false;
|
||||
}
|
||||
OrgTreeDTO dto = (OrgTreeDTO)o;
|
||||
return Objects.equals(this.id, dto.id) && Objects.equals(this.name, dto.name) && Objects.equals(this.typeId, dto.typeId) && Objects.equals(this.parentId, dto.parentId);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return Objects.hash(this.id, this.name, this.typeId, this.parentId);
|
||||
}
|
||||
}
|
||||
|
||||
-89
@@ -1,89 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class OrganizationAreaRefDTO {
|
||||
private String id;
|
||||
private String orgId;
|
||||
private String areaId;
|
||||
private Integer refType;
|
||||
private String businessId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId == null ? null : orgId.trim();
|
||||
}
|
||||
|
||||
public String getAreaId() {
|
||||
return this.areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(String areaId) {
|
||||
this.areaId = areaId == null ? null : areaId.trim();
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public Integer getRefType() {
|
||||
return this.refType;
|
||||
}
|
||||
|
||||
public void setRefType(Integer refType) {
|
||||
this.refType = refType;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
}
|
||||
|
||||
-143
@@ -1,143 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class OrganizationExtendDTO {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String organizationId;
|
||||
private Integer employeeNumber;
|
||||
private Integer orgCarNumber;
|
||||
private Integer employeeCarNumber;
|
||||
private Long leaseholdBegin;
|
||||
private Long leaseholdEnd;
|
||||
private Integer paymentState;
|
||||
private Integer carportNum;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String remark;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId == null ? null : businessId.trim();
|
||||
}
|
||||
|
||||
public String getOrganizationId() {
|
||||
return this.organizationId;
|
||||
}
|
||||
|
||||
public void setOrganizationId(String organizationId) {
|
||||
this.organizationId = organizationId == null ? null : organizationId.trim();
|
||||
}
|
||||
|
||||
public Integer getEmployeeNumber() {
|
||||
return this.employeeNumber;
|
||||
}
|
||||
|
||||
public void setEmployeeNumber(Integer employeeNumber) {
|
||||
this.employeeNumber = employeeNumber;
|
||||
}
|
||||
|
||||
public Integer getOrgCarNumber() {
|
||||
return this.orgCarNumber;
|
||||
}
|
||||
|
||||
public void setOrgCarNumber(Integer orgCarNumber) {
|
||||
this.orgCarNumber = orgCarNumber;
|
||||
}
|
||||
|
||||
public Integer getEmployeeCarNumber() {
|
||||
return this.employeeCarNumber;
|
||||
}
|
||||
|
||||
public void setEmployeeCarNumber(Integer employeeCarNumber) {
|
||||
this.employeeCarNumber = employeeCarNumber;
|
||||
}
|
||||
|
||||
public Long getLeaseholdBegin() {
|
||||
return this.leaseholdBegin;
|
||||
}
|
||||
|
||||
public void setLeaseholdBegin(Long leaseholdBegin) {
|
||||
this.leaseholdBegin = leaseholdBegin;
|
||||
}
|
||||
|
||||
public Long getLeaseholdEnd() {
|
||||
return this.leaseholdEnd;
|
||||
}
|
||||
|
||||
public void setLeaseholdEnd(Long leaseholdEnd) {
|
||||
this.leaseholdEnd = leaseholdEnd;
|
||||
}
|
||||
|
||||
public Integer getPaymentState() {
|
||||
return this.paymentState;
|
||||
}
|
||||
|
||||
public void setPaymentState(Integer paymentState) {
|
||||
this.paymentState = paymentState;
|
||||
}
|
||||
|
||||
public Integer getCarportNum() {
|
||||
return this.carportNum;
|
||||
}
|
||||
|
||||
public void setCarportNum(Integer carportNum) {
|
||||
this.carportNum = carportNum;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
}
|
||||
|
||||
-136
@@ -1,136 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class OrganizationExtendDetailDTO {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String organizationId;
|
||||
private BigDecimal unitRent;
|
||||
private BigDecimal waterAmount;
|
||||
private BigDecimal electricityAmount;
|
||||
private BigDecimal propertyAmount;
|
||||
private Long belongDate;
|
||||
private Long payTime;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String remark;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId == null ? null : businessId.trim();
|
||||
}
|
||||
|
||||
public String getOrganizationId() {
|
||||
return this.organizationId;
|
||||
}
|
||||
|
||||
public void setOrganizationId(String organizationId) {
|
||||
this.organizationId = organizationId == null ? null : organizationId.trim();
|
||||
}
|
||||
|
||||
public BigDecimal getUnitRent() {
|
||||
return this.unitRent;
|
||||
}
|
||||
|
||||
public void setUnitRent(BigDecimal unitRent) {
|
||||
this.unitRent = unitRent;
|
||||
}
|
||||
|
||||
public BigDecimal getWaterAmount() {
|
||||
return this.waterAmount;
|
||||
}
|
||||
|
||||
public void setWaterAmount(BigDecimal waterAmount) {
|
||||
this.waterAmount = waterAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getElectricityAmount() {
|
||||
return this.electricityAmount;
|
||||
}
|
||||
|
||||
public void setElectricityAmount(BigDecimal electricityAmount) {
|
||||
this.electricityAmount = electricityAmount;
|
||||
}
|
||||
|
||||
public BigDecimal getPropertyAmount() {
|
||||
return this.propertyAmount;
|
||||
}
|
||||
|
||||
public void setPropertyAmount(BigDecimal propertyAmount) {
|
||||
this.propertyAmount = propertyAmount;
|
||||
}
|
||||
|
||||
public Long getBelongDate() {
|
||||
return this.belongDate;
|
||||
}
|
||||
|
||||
public void setBelongDate(Long belongDate) {
|
||||
this.belongDate = belongDate;
|
||||
}
|
||||
|
||||
public Long getPayTime() {
|
||||
return this.payTime;
|
||||
}
|
||||
|
||||
public void setPayTime(Long payTime) {
|
||||
this.payTime = payTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
}
|
||||
|
||||
-64
@@ -1,64 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class OrganizationImageStoreQueryDTO {
|
||||
private String applicationId;
|
||||
private List<String> applicationIds;
|
||||
private String orgId;
|
||||
private List<String> orgIds;
|
||||
private String imageStoreId;
|
||||
private List<String> imageStoreIds;
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public List<String> getApplicationIds() {
|
||||
return this.applicationIds;
|
||||
}
|
||||
|
||||
public void setApplicationIds(List<String> applicationIds) {
|
||||
this.applicationIds = applicationIds;
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public List<String> getOrgIds() {
|
||||
return this.orgIds;
|
||||
}
|
||||
|
||||
public void setOrgIds(List<String> orgIds) {
|
||||
this.orgIds = orgIds;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public List<String> getImageStoreIds() {
|
||||
return this.imageStoreIds;
|
||||
}
|
||||
|
||||
public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
this.imageStoreIds = imageStoreIds;
|
||||
}
|
||||
}
|
||||
|
||||
-82
@@ -1,82 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class OrganizationTypeQueryDto {
|
||||
private List<String> ids;
|
||||
private String name;
|
||||
private String code;
|
||||
private List<String> codes;
|
||||
private String businessId;
|
||||
private Integer hasLowerLevel;
|
||||
private Integer status;
|
||||
private Integer hasDefault;
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Integer getHasLowerLevel() {
|
||||
return this.hasLowerLevel;
|
||||
}
|
||||
|
||||
public void setHasLowerLevel(Integer hasLowerLevel) {
|
||||
this.hasLowerLevel = hasLowerLevel;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getHasDefault() {
|
||||
return this.hasDefault;
|
||||
}
|
||||
|
||||
public void setHasDefault(Integer hasDefault) {
|
||||
this.hasDefault = hasDefault;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public List<String> getCodes() {
|
||||
return this.codes;
|
||||
}
|
||||
|
||||
public void setCodes(List<String> codes) {
|
||||
this.codes = codes;
|
||||
}
|
||||
}
|
||||
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class PageLabelDTO {
|
||||
private String id;
|
||||
private String name;
|
||||
private String code;
|
||||
private String businessId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
}
|
||||
|
||||
-107
@@ -1,107 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class PagePersonSwitchBatchDTO {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String batchNo;
|
||||
private Integer batchTotalSum;
|
||||
private Integer batchDoneSum;
|
||||
private short status;
|
||||
private Long doneTime;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getBatchNo() {
|
||||
return this.batchNo;
|
||||
}
|
||||
|
||||
public void setBatchNo(String batchNo) {
|
||||
this.batchNo = batchNo;
|
||||
}
|
||||
|
||||
public Integer getBatchTotalSum() {
|
||||
return this.batchTotalSum;
|
||||
}
|
||||
|
||||
public void setBatchTotalSum(Integer batchTotalSum) {
|
||||
this.batchTotalSum = batchTotalSum;
|
||||
}
|
||||
|
||||
public Integer getBatchDoneSum() {
|
||||
return this.batchDoneSum;
|
||||
}
|
||||
|
||||
public void setBatchDoneSum(Integer batchDoneSum) {
|
||||
this.batchDoneSum = batchDoneSum;
|
||||
}
|
||||
|
||||
public short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Long getDoneTime() {
|
||||
return this.doneTime;
|
||||
}
|
||||
|
||||
public void setDoneTime(Long doneTime) {
|
||||
this.doneTime = doneTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
}
|
||||
|
||||
-91
@@ -1,91 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class PersonRegistryDTO {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private Integer status;
|
||||
private Integer deviceStatus;
|
||||
private Integer codeStatus;
|
||||
private String organizationIds;
|
||||
private String labelIds;
|
||||
List<String> ids;
|
||||
private Integer type;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getDeviceStatus() {
|
||||
return this.deviceStatus;
|
||||
}
|
||||
|
||||
public void setDeviceStatus(Integer deviceStatus) {
|
||||
this.deviceStatus = deviceStatus;
|
||||
}
|
||||
|
||||
public Integer getCodeStatus() {
|
||||
return this.codeStatus;
|
||||
}
|
||||
|
||||
public void setCodeStatus(Integer codeStatus) {
|
||||
this.codeStatus = codeStatus;
|
||||
}
|
||||
|
||||
public String getOrganizationIds() {
|
||||
return this.organizationIds;
|
||||
}
|
||||
|
||||
public void setOrganizationIds(String organizationIds) {
|
||||
this.organizationIds = organizationIds;
|
||||
}
|
||||
|
||||
public String getLabelIds() {
|
||||
return this.labelIds;
|
||||
}
|
||||
|
||||
public void setLabelIds(String labelIds) {
|
||||
this.labelIds = labelIds;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
-145
@@ -1,145 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
public class QueryGroupPersonDTO {
|
||||
private Collection<String> ids;
|
||||
private String imageStoreId;
|
||||
private Collection<String> imageStoreIds;
|
||||
private String personId;
|
||||
private Collection<String> personIds;
|
||||
private Short isDel;
|
||||
private Long lastUpdateTime;
|
||||
private String sequenceId;
|
||||
private Short status;
|
||||
private String deviceId;
|
||||
private Integer expiryBeginDateStatus;
|
||||
private Integer expiryEndDateStatus;
|
||||
private Long startTime;
|
||||
private Long endTime;
|
||||
private Integer pageSize;
|
||||
|
||||
public Integer getPageSize() {
|
||||
return this.pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(Integer pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public Collection<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(Collection<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public Collection<String> getImageStoreIds() {
|
||||
return this.imageStoreIds;
|
||||
}
|
||||
|
||||
public void setImageStoreIds(Collection<String> imageStoreIds) {
|
||||
this.imageStoreIds = imageStoreIds;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public Collection<String> getPersonIds() {
|
||||
return this.personIds;
|
||||
}
|
||||
|
||||
public void setPersonIds(Collection<String> personIds) {
|
||||
this.personIds = personIds;
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getSequenceId() {
|
||||
return this.sequenceId;
|
||||
}
|
||||
|
||||
public void setSequenceId(String sequenceId) {
|
||||
this.sequenceId = sequenceId;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public Integer getExpiryBeginDateStatus() {
|
||||
return this.expiryBeginDateStatus;
|
||||
}
|
||||
|
||||
public void setExpiryBeginDateStatus(Integer expiryBeginDateStatus) {
|
||||
this.expiryBeginDateStatus = expiryBeginDateStatus;
|
||||
}
|
||||
|
||||
public Integer getExpiryEndDateStatus() {
|
||||
return this.expiryEndDateStatus;
|
||||
}
|
||||
|
||||
public void setExpiryEndDateStatus(Integer expiryEndDateStatus) {
|
||||
this.expiryEndDateStatus = expiryEndDateStatus;
|
||||
}
|
||||
|
||||
public Long getStartTime() {
|
||||
return this.startTime;
|
||||
}
|
||||
|
||||
public void setStartTime(Long startTime) {
|
||||
this.startTime = startTime;
|
||||
}
|
||||
|
||||
public Long getEndTime() {
|
||||
return this.endTime;
|
||||
}
|
||||
|
||||
public void setEndTime(Long endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
}
|
||||
|
||||
-106
@@ -1,106 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* com.fasterxml.jackson.annotation.JsonInclude
|
||||
* com.fasterxml.jackson.annotation.JsonInclude$Include
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
|
||||
@JsonInclude(value=JsonInclude.Include.NON_NULL)
|
||||
public class SyncPersonDTO {
|
||||
private String groupPersonRefId;
|
||||
private String imageStoreId;
|
||||
private String imageId;
|
||||
private String oldImageId;
|
||||
private Long oldExpiryBeginDate;
|
||||
private Long oldExpiryEndDate;
|
||||
private Long newExpiryBeginDate;
|
||||
private Long newExpiryEndDate;
|
||||
private int action;
|
||||
|
||||
public SyncPersonDTO() {
|
||||
}
|
||||
|
||||
public SyncPersonDTO(String groupPersonRefId, String imageStoreId, String imageId, int action) {
|
||||
this.groupPersonRefId = groupPersonRefId;
|
||||
this.imageStoreId = imageStoreId;
|
||||
this.imageId = imageId;
|
||||
this.action = action;
|
||||
}
|
||||
|
||||
public String getGroupPersonRefId() {
|
||||
return this.groupPersonRefId;
|
||||
}
|
||||
|
||||
public void setGroupPersonRefId(String groupPersonRefId) {
|
||||
this.groupPersonRefId = groupPersonRefId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getOldImageId() {
|
||||
return this.oldImageId;
|
||||
}
|
||||
|
||||
public void setOldImageId(String oldImageId) {
|
||||
this.oldImageId = oldImageId;
|
||||
}
|
||||
|
||||
public Long getOldExpiryBeginDate() {
|
||||
return this.oldExpiryBeginDate;
|
||||
}
|
||||
|
||||
public void setOldExpiryBeginDate(Long oldExpiryBeginDate) {
|
||||
this.oldExpiryBeginDate = oldExpiryBeginDate;
|
||||
}
|
||||
|
||||
public Long getOldExpiryEndDate() {
|
||||
return this.oldExpiryEndDate;
|
||||
}
|
||||
|
||||
public void setOldExpiryEndDate(Long oldExpiryEndDate) {
|
||||
this.oldExpiryEndDate = oldExpiryEndDate;
|
||||
}
|
||||
|
||||
public Long getNewExpiryBeginDate() {
|
||||
return this.newExpiryBeginDate;
|
||||
}
|
||||
|
||||
public void setNewExpiryBeginDate(Long newExpiryBeginDate) {
|
||||
this.newExpiryBeginDate = newExpiryBeginDate;
|
||||
}
|
||||
|
||||
public Long getNewExpiryEndDate() {
|
||||
return this.newExpiryEndDate;
|
||||
}
|
||||
|
||||
public void setNewExpiryEndDate(Long newExpiryEndDate) {
|
||||
this.newExpiryEndDate = newExpiryEndDate;
|
||||
}
|
||||
|
||||
public int getAction() {
|
||||
return this.action;
|
||||
}
|
||||
|
||||
public void setAction(int action) {
|
||||
this.action = action;
|
||||
}
|
||||
}
|
||||
|
||||
-30
@@ -1,30 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.dto;
|
||||
|
||||
public class UnitCountDTO {
|
||||
private String id;
|
||||
private Integer count;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getCount() {
|
||||
return this.count;
|
||||
}
|
||||
|
||||
public void setCount(Integer count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "UnitCountDTO{id='" + this.id + '\'' + ", count=" + this.count + '}';
|
||||
}
|
||||
}
|
||||
|
||||
-260
@@ -1,260 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class Area {
|
||||
private String id;
|
||||
private String code;
|
||||
private Integer level;
|
||||
private String name;
|
||||
private String parentId;
|
||||
private String businessId;
|
||||
private Short isDel;
|
||||
private String typeId;
|
||||
private Integer orderBy;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
private String ext4;
|
||||
private String ext5;
|
||||
private String ext6;
|
||||
private String ext7;
|
||||
private String ext8;
|
||||
private String ext9;
|
||||
private String ext10;
|
||||
private String ext11;
|
||||
private String ext12;
|
||||
private String ext13;
|
||||
private String ext14;
|
||||
private String ext15;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public Integer getLevel() {
|
||||
return this.level;
|
||||
}
|
||||
|
||||
public void setLevel(Integer level) {
|
||||
this.level = level;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public String getTypeId() {
|
||||
return this.typeId;
|
||||
}
|
||||
|
||||
public void setTypeId(String typeId) {
|
||||
this.typeId = typeId;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
|
||||
public String getExt4() {
|
||||
return this.ext4;
|
||||
}
|
||||
|
||||
public void setExt4(String ext4) {
|
||||
this.ext4 = ext4;
|
||||
}
|
||||
|
||||
public String getExt5() {
|
||||
return this.ext5;
|
||||
}
|
||||
|
||||
public void setExt5(String ext5) {
|
||||
this.ext5 = ext5;
|
||||
}
|
||||
|
||||
public String getExt6() {
|
||||
return this.ext6;
|
||||
}
|
||||
|
||||
public void setExt6(String ext6) {
|
||||
this.ext6 = ext6;
|
||||
}
|
||||
|
||||
public String getExt7() {
|
||||
return this.ext7;
|
||||
}
|
||||
|
||||
public void setExt7(String ext7) {
|
||||
this.ext7 = ext7;
|
||||
}
|
||||
|
||||
public String getExt8() {
|
||||
return this.ext8;
|
||||
}
|
||||
|
||||
public void setExt8(String ext8) {
|
||||
this.ext8 = ext8;
|
||||
}
|
||||
|
||||
public String getExt9() {
|
||||
return this.ext9;
|
||||
}
|
||||
|
||||
public void setExt9(String ext9) {
|
||||
this.ext9 = ext9;
|
||||
}
|
||||
|
||||
public String getExt10() {
|
||||
return this.ext10;
|
||||
}
|
||||
|
||||
public void setExt10(String ext10) {
|
||||
this.ext10 = ext10;
|
||||
}
|
||||
|
||||
public String getExt11() {
|
||||
return this.ext11;
|
||||
}
|
||||
|
||||
public void setExt11(String ext11) {
|
||||
this.ext11 = ext11;
|
||||
}
|
||||
|
||||
public String getExt12() {
|
||||
return this.ext12;
|
||||
}
|
||||
|
||||
public void setExt12(String ext12) {
|
||||
this.ext12 = ext12;
|
||||
}
|
||||
|
||||
public String getExt13() {
|
||||
return this.ext13;
|
||||
}
|
||||
|
||||
public void setExt13(String ext13) {
|
||||
this.ext13 = ext13;
|
||||
}
|
||||
|
||||
public String getExt14() {
|
||||
return this.ext14;
|
||||
}
|
||||
|
||||
public void setExt14(String ext14) {
|
||||
this.ext14 = ext14;
|
||||
}
|
||||
|
||||
public String getExt15() {
|
||||
return this.ext15;
|
||||
}
|
||||
|
||||
public void setExt15(String ext15) {
|
||||
this.ext15 = ext15;
|
||||
}
|
||||
|
||||
public Integer getOrderBy() {
|
||||
return this.orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(Integer orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
}
|
||||
|
||||
-107
@@ -1,107 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class AreaType {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Integer hasLowerLevel;
|
||||
private Integer hasDefault;
|
||||
private Integer status;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId == null ? null : businessId.trim();
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code == null ? null : code.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Integer getHasLowerLevel() {
|
||||
return this.hasLowerLevel;
|
||||
}
|
||||
|
||||
public void setHasLowerLevel(Integer hasLowerLevel) {
|
||||
this.hasLowerLevel = hasLowerLevel;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public Integer getHasDefault() {
|
||||
return this.hasDefault;
|
||||
}
|
||||
|
||||
public void setHasDefault(Integer hasDefault) {
|
||||
this.hasDefault = hasDefault;
|
||||
}
|
||||
}
|
||||
|
||||
-133
@@ -1,133 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
public class AreaTypeProperties {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String areaTypeId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Integer status;
|
||||
private Integer hasRequired;
|
||||
private Integer orderNum;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId == null ? null : businessId.trim();
|
||||
}
|
||||
|
||||
public String getAreaTypeId() {
|
||||
return this.areaTypeId;
|
||||
}
|
||||
|
||||
public void setAreaTypeId(String areaTypeId) {
|
||||
this.areaTypeId = areaTypeId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code == null ? null : code.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getHasRequired() {
|
||||
return this.hasRequired;
|
||||
}
|
||||
|
||||
public void setHasRequired(Integer hasRequired) {
|
||||
this.hasRequired = hasRequired;
|
||||
}
|
||||
|
||||
public Integer getOrderNum() {
|
||||
return this.orderNum;
|
||||
}
|
||||
|
||||
public void setOrderNum(Integer orderNum) {
|
||||
this.orderNum = orderNum;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) {
|
||||
return true;
|
||||
}
|
||||
if (o == null || this.getClass() != o.getClass()) {
|
||||
return false;
|
||||
}
|
||||
AreaTypeProperties that = (AreaTypeProperties)o;
|
||||
return Objects.equals(this.id, that.id);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return Objects.hash(this.id);
|
||||
}
|
||||
}
|
||||
|
||||
-93
@@ -1,93 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class BatchDetail
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String id;
|
||||
private String batchId;
|
||||
private String fileName;
|
||||
private String personName;
|
||||
private String personCode;
|
||||
private Integer status;
|
||||
private String remark;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBatchId() {
|
||||
return this.batchId;
|
||||
}
|
||||
|
||||
public void setBatchId(String batchId) {
|
||||
this.batchId = batchId;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return this.fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public String getPersonName() {
|
||||
return this.personName;
|
||||
}
|
||||
|
||||
public void setPersonName(String personName) {
|
||||
this.personName = personName;
|
||||
}
|
||||
|
||||
public String getPersonCode() {
|
||||
return this.personCode;
|
||||
}
|
||||
|
||||
public void setPersonCode(String personCode) {
|
||||
this.personCode = personCode;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
}
|
||||
|
||||
-147
@@ -1,147 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class BatchImport
|
||||
implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String batchNo;
|
||||
private Integer type;
|
||||
private String fileName;
|
||||
private String filePath;
|
||||
private Long finishTime;
|
||||
private Long totalCount;
|
||||
private Long currentCount;
|
||||
private String remark;
|
||||
private Integer status;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private String operation;
|
||||
private String loginName;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getBatchNo() {
|
||||
return this.batchNo;
|
||||
}
|
||||
|
||||
public void setBatchNo(String batchNo) {
|
||||
this.batchNo = batchNo;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return this.fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public String getFilePath() {
|
||||
return this.filePath;
|
||||
}
|
||||
|
||||
public void setFilePath(String filePath) {
|
||||
this.filePath = filePath;
|
||||
}
|
||||
|
||||
public Long getFinishTime() {
|
||||
return this.finishTime;
|
||||
}
|
||||
|
||||
public void setFinishTime(Long finishTime) {
|
||||
this.finishTime = finishTime;
|
||||
}
|
||||
|
||||
public Long getTotalCount() {
|
||||
return this.totalCount;
|
||||
}
|
||||
|
||||
public void setTotalCount(Long totalCount) {
|
||||
this.totalCount = totalCount;
|
||||
}
|
||||
|
||||
public Long getCurrentCount() {
|
||||
return this.currentCount;
|
||||
}
|
||||
|
||||
public void setCurrentCount(Long currentCount) {
|
||||
this.currentCount = currentCount;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public String getOperation() {
|
||||
return this.operation;
|
||||
}
|
||||
|
||||
public void setOperation(String operation) {
|
||||
this.operation = operation;
|
||||
}
|
||||
|
||||
public String getLoginName() {
|
||||
return this.loginName;
|
||||
}
|
||||
|
||||
public void setLoginName(String loginName) {
|
||||
this.loginName = loginName;
|
||||
}
|
||||
}
|
||||
|
||||
-80
@@ -1,80 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class DeviceImageStore {
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String imageStoreId;
|
||||
private Integer type;
|
||||
private Long createTime;
|
||||
private Long lastUpdateTime;
|
||||
private Long finishPullTime;
|
||||
private Integer status;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public Long getFinishPullTime() {
|
||||
return this.finishPullTime;
|
||||
}
|
||||
|
||||
public void setFinishPullTime(Long finishPullTime) {
|
||||
this.finishPullTime = finishPullTime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
-66
@@ -1,66 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class DevicePerson {
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String personId;
|
||||
private Integer type;
|
||||
private Long createTime;
|
||||
private Long lastUpdateTime;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "DevicePerson{id='" + this.id + '\'' + ", deviceId='" + this.deviceId + '\'' + ", personId='" + this.personId + '\'' + ", type=" + this.type + ", createTime=" + this.createTime + ", lastUpdateTime=" + this.lastUpdateTime + '}';
|
||||
}
|
||||
}
|
||||
|
||||
-183
@@ -1,183 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class DevicePersonSyncLog {
|
||||
private String id;
|
||||
private String deviceId;
|
||||
private String imageStoreId;
|
||||
private String personId;
|
||||
private String imageId;
|
||||
private String groupPersonRefId;
|
||||
private Integer status;
|
||||
private String code;
|
||||
private String errorMessage;
|
||||
private Long createTime;
|
||||
private Long lastUpdateTime;
|
||||
private Integer count;
|
||||
private Long lastPullTime;
|
||||
private Long lastReportTime;
|
||||
private String updateInfo;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private String devicePersonRefId;
|
||||
private Integer isDel;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return this.deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getGroupPersonRefId() {
|
||||
return this.groupPersonRefId;
|
||||
}
|
||||
|
||||
public void setGroupPersonRefId(String groupPersonRefId) {
|
||||
this.groupPersonRefId = groupPersonRefId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getErrorMessage() {
|
||||
return this.errorMessage;
|
||||
}
|
||||
|
||||
public void setErrorMessage(String errorMessage) {
|
||||
this.errorMessage = errorMessage;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public Integer getCount() {
|
||||
return this.count;
|
||||
}
|
||||
|
||||
public void setCount(Integer count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public Long getLastPullTime() {
|
||||
return this.lastPullTime;
|
||||
}
|
||||
|
||||
public void setLastPullTime(Long lastPullTime) {
|
||||
this.lastPullTime = lastPullTime;
|
||||
}
|
||||
|
||||
public Long getLastReportTime() {
|
||||
return this.lastReportTime;
|
||||
}
|
||||
|
||||
public void setLastReportTime(Long lastReportTime) {
|
||||
this.lastReportTime = lastReportTime;
|
||||
}
|
||||
|
||||
public String getUpdateInfo() {
|
||||
return this.updateInfo;
|
||||
}
|
||||
|
||||
public void setUpdateInfo(String updateInfo) {
|
||||
this.updateInfo = updateInfo;
|
||||
}
|
||||
|
||||
public Long getExpiryBeginDate() {
|
||||
return this.expiryBeginDate;
|
||||
}
|
||||
|
||||
public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
this.expiryBeginDate = expiryBeginDate;
|
||||
}
|
||||
|
||||
public Long getExpiryEndDate() {
|
||||
return this.expiryEndDate;
|
||||
}
|
||||
|
||||
public void setExpiryEndDate(Long expiryEndDate) {
|
||||
this.expiryEndDate = expiryEndDate;
|
||||
}
|
||||
|
||||
public String getDevicePersonRefId() {
|
||||
return this.devicePersonRefId;
|
||||
}
|
||||
|
||||
public void setDevicePersonRefId(String devicePersonRefId) {
|
||||
this.devicePersonRefId = devicePersonRefId;
|
||||
}
|
||||
|
||||
public Integer getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Integer isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "DevicePersonSyncLog{id='" + this.id + '\'' + ", deviceId='" + this.deviceId + '\'' + ", imageStoreId='" + this.imageStoreId + '\'' + ", personId='" + this.personId + '\'' + ", imageId='" + this.imageId + '\'' + ", groupPersonRefId='" + this.groupPersonRefId + '\'' + ", status=" + this.status + ", code='" + this.code + '\'' + ", errorMessage='" + this.errorMessage + '\'' + ", createTime=" + this.createTime + ", lastUpdateTime=" + this.lastUpdateTime + ", count=" + this.count + ", lastPullTime=" + this.lastPullTime + ", lastReportTime=" + this.lastReportTime + ", updateInfo='" + this.updateInfo + '\'' + ", expiryBeginDate=" + this.expiryBeginDate + ", expiryEndDate=" + this.expiryEndDate + ", devicePersonRefId='" + this.devicePersonRefId + '\'' + ", isDel=" + this.isDel + '}';
|
||||
}
|
||||
}
|
||||
|
||||
-242
@@ -1,242 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.springframework.util.StringUtils
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
public class GroupPersonRef {
|
||||
private String id;
|
||||
private String imageStoreId;
|
||||
private String personId;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private String validDateCron;
|
||||
private Long oldExpiryBeginDate;
|
||||
private Long oldExpiryEndDate;
|
||||
private String oldValidDateCron;
|
||||
private Short status;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
private Short isDel;
|
||||
private Short gender;
|
||||
private Integer age;
|
||||
private Short groupStatus;
|
||||
private Long groupTime;
|
||||
private String errorMessage;
|
||||
private Integer expiryBeginDateStatus;
|
||||
private Integer expiryEndDateStatus;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public Long getExpiryBeginDate() {
|
||||
return this.expiryBeginDate;
|
||||
}
|
||||
|
||||
public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
this.expiryBeginDate = expiryBeginDate;
|
||||
}
|
||||
|
||||
public Long getExpiryEndDate() {
|
||||
return this.expiryEndDate;
|
||||
}
|
||||
|
||||
public void setExpiryEndDate(Long expiryEndDate) {
|
||||
this.expiryEndDate = expiryEndDate;
|
||||
}
|
||||
|
||||
public Long getOldExpiryBeginDate() {
|
||||
return this.oldExpiryBeginDate;
|
||||
}
|
||||
|
||||
public void setOldExpiryBeginDate(Long oldExpiryBeginDate) {
|
||||
this.oldExpiryBeginDate = oldExpiryBeginDate;
|
||||
}
|
||||
|
||||
public Long getOldExpiryEndDate() {
|
||||
return this.oldExpiryEndDate;
|
||||
}
|
||||
|
||||
public void setOldExpiryEndDate(Long oldExpiryEndDate) {
|
||||
this.oldExpiryEndDate = oldExpiryEndDate;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public Short getGender() {
|
||||
return this.gender;
|
||||
}
|
||||
|
||||
public void setGender(Short gender) {
|
||||
this.gender = gender;
|
||||
}
|
||||
|
||||
public Integer getAge() {
|
||||
return this.age;
|
||||
}
|
||||
|
||||
public void setAge(Integer age) {
|
||||
this.age = age;
|
||||
}
|
||||
|
||||
public Short getGroupStatus() {
|
||||
return this.groupStatus;
|
||||
}
|
||||
|
||||
public void setGroupStatus(Short groupStatus) {
|
||||
this.groupStatus = groupStatus;
|
||||
}
|
||||
|
||||
public void resetGroupStatus(Short groupStatus) {
|
||||
this.groupStatus = groupStatus;
|
||||
this.groupTime = null;
|
||||
this.errorMessage = null;
|
||||
}
|
||||
|
||||
public Long getGroupTime() {
|
||||
return this.groupTime;
|
||||
}
|
||||
|
||||
public void setGroupTime(Long groupTime) {
|
||||
this.groupTime = groupTime;
|
||||
}
|
||||
|
||||
public String getErrorMessage() {
|
||||
return this.errorMessage;
|
||||
}
|
||||
|
||||
public void setErrorMessage(String errorMessage) {
|
||||
this.errorMessage = errorMessage;
|
||||
}
|
||||
|
||||
public Integer getExpiryBeginDateStatus() {
|
||||
return this.expiryBeginDateStatus;
|
||||
}
|
||||
|
||||
public void setExpiryBeginDateStatus(Integer expiryBeginDateStatus) {
|
||||
this.expiryBeginDateStatus = expiryBeginDateStatus;
|
||||
}
|
||||
|
||||
public Integer getExpiryEndDateStatus() {
|
||||
return this.expiryEndDateStatus;
|
||||
}
|
||||
|
||||
public void setExpiryEndDateStatus(Integer expiryEndDateStatus) {
|
||||
this.expiryEndDateStatus = expiryEndDateStatus;
|
||||
}
|
||||
|
||||
public String getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(String validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
|
||||
public String getOldValidDateCron() {
|
||||
return this.oldValidDateCron;
|
||||
}
|
||||
|
||||
public void setOldValidDateCron(String oldValidDateCron) {
|
||||
this.oldValidDateCron = oldValidDateCron;
|
||||
}
|
||||
|
||||
public boolean compare(GroupPersonRef ref) {
|
||||
if (this.expiryBeginDate == null && ref.expiryBeginDate != null) {
|
||||
return false;
|
||||
}
|
||||
if (this.expiryBeginDate != null && !this.expiryBeginDate.equals(ref.expiryBeginDate)) {
|
||||
return false;
|
||||
}
|
||||
if (this.expiryEndDate == null && ref.expiryEndDate != null) {
|
||||
return false;
|
||||
}
|
||||
if (this.expiryEndDate != null && !this.expiryEndDate.equals(ref.expiryEndDate)) {
|
||||
return false;
|
||||
}
|
||||
if (this.status == null && ref.status != null) {
|
||||
return false;
|
||||
}
|
||||
if (this.status != null && !this.status.equals(ref.status)) {
|
||||
return false;
|
||||
}
|
||||
if (StringUtils.isEmpty((Object)this.validDateCron) && !StringUtils.isEmpty((Object)ref.getValidDateCron())) {
|
||||
return false;
|
||||
}
|
||||
return StringUtils.isEmpty((Object)this.validDateCron) || this.validDateCron.equals(ref.getValidDateCron());
|
||||
}
|
||||
}
|
||||
|
||||
-640
@@ -1,640 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class ImgStorePerson {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String personCode;
|
||||
private String name;
|
||||
private String userName;
|
||||
private String phone;
|
||||
private Short status;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private String showPicture;
|
||||
private String comparePicture;
|
||||
private String icCardNo;
|
||||
private String icCardType;
|
||||
private String imageId;
|
||||
private Short isDel;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private String ext1;
|
||||
private String floorName;
|
||||
private String floorNames;
|
||||
private List<String> vehicleList;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
private String ext4;
|
||||
private String ext5;
|
||||
private String ext6;
|
||||
private String ext7;
|
||||
private String ext8;
|
||||
private String ext9;
|
||||
private String ext10;
|
||||
private String ext11;
|
||||
private String ext12;
|
||||
private String ext13;
|
||||
private String ext14;
|
||||
private String ext15;
|
||||
private String ext16;
|
||||
private String ext17;
|
||||
private String ext18;
|
||||
private String ext19;
|
||||
private String ext20;
|
||||
private String ext21;
|
||||
private String ext22;
|
||||
private String ext23;
|
||||
private String ext24;
|
||||
private String ext25;
|
||||
private String ext26;
|
||||
private String ext27;
|
||||
private String ext28;
|
||||
private String ext29;
|
||||
private String ext30;
|
||||
private String ext31;
|
||||
private String ext32;
|
||||
private String ext33;
|
||||
private String ext34;
|
||||
private String ext35;
|
||||
private String ext36;
|
||||
private String ext37;
|
||||
private String ext38;
|
||||
private String ext39;
|
||||
private String ext40;
|
||||
private String email;
|
||||
private Short createSysAccount;
|
||||
private String sysAccountId;
|
||||
private Short source;
|
||||
private String welcome;
|
||||
private String reserveInfo;
|
||||
private String defaultFloor;
|
||||
private String chooseFloor;
|
||||
|
||||
public String getFloorName() {
|
||||
return this.floorName;
|
||||
}
|
||||
|
||||
public void setFloorName(String floorName) {
|
||||
this.floorName = floorName;
|
||||
}
|
||||
|
||||
public String getFloorNames() {
|
||||
return this.floorNames;
|
||||
}
|
||||
|
||||
public void setFloorNames(String floorNames) {
|
||||
this.floorNames = floorNames;
|
||||
}
|
||||
|
||||
public List<String> getVehicleList() {
|
||||
return this.vehicleList;
|
||||
}
|
||||
|
||||
public void setVehicleList(List<String> vehicleList) {
|
||||
this.vehicleList = vehicleList;
|
||||
}
|
||||
|
||||
public String getDefaultFloor() {
|
||||
return this.defaultFloor;
|
||||
}
|
||||
|
||||
public void setDefaultFloor(String defaultFloor) {
|
||||
this.defaultFloor = defaultFloor;
|
||||
}
|
||||
|
||||
public String getChooseFloor() {
|
||||
return this.chooseFloor;
|
||||
}
|
||||
|
||||
public void setChooseFloor(String chooseFloor) {
|
||||
this.chooseFloor = chooseFloor;
|
||||
}
|
||||
|
||||
public String getWelcome() {
|
||||
return this.welcome;
|
||||
}
|
||||
|
||||
public void setWelcome(String welcome) {
|
||||
this.welcome = welcome;
|
||||
}
|
||||
|
||||
public String getReserveInfo() {
|
||||
return this.reserveInfo;
|
||||
}
|
||||
|
||||
public void setReserveInfo(String reserveInfo) {
|
||||
this.reserveInfo = reserveInfo;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId == null ? null : businessId.trim();
|
||||
}
|
||||
|
||||
public String getPersonCode() {
|
||||
return this.personCode;
|
||||
}
|
||||
|
||||
public void setPersonCode(String personCode) {
|
||||
this.personCode = personCode == null ? null : personCode.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return this.phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone == null ? null : phone.trim();
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Long getExpiryBeginDate() {
|
||||
return this.expiryBeginDate;
|
||||
}
|
||||
|
||||
public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
this.expiryBeginDate = expiryBeginDate;
|
||||
}
|
||||
|
||||
public Long getExpiryEndDate() {
|
||||
return this.expiryEndDate;
|
||||
}
|
||||
|
||||
public void setExpiryEndDate(Long expiryEndDate) {
|
||||
this.expiryEndDate = expiryEndDate;
|
||||
}
|
||||
|
||||
public String getShowPicture() {
|
||||
return this.showPicture;
|
||||
}
|
||||
|
||||
public void setShowPicture(String showPicture) {
|
||||
this.showPicture = showPicture == null ? null : showPicture.trim();
|
||||
}
|
||||
|
||||
public String getComparePicture() {
|
||||
return this.comparePicture;
|
||||
}
|
||||
|
||||
public void setComparePicture(String comparePicture) {
|
||||
this.comparePicture = comparePicture == null ? null : comparePicture.trim();
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public String getImageId() {
|
||||
return this.imageId;
|
||||
}
|
||||
|
||||
public void setImageId(String imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
|
||||
public String getExt4() {
|
||||
return this.ext4;
|
||||
}
|
||||
|
||||
public void setExt4(String ext4) {
|
||||
this.ext4 = ext4;
|
||||
}
|
||||
|
||||
public String getExt5() {
|
||||
return this.ext5;
|
||||
}
|
||||
|
||||
public void setExt5(String ext5) {
|
||||
this.ext5 = ext5;
|
||||
}
|
||||
|
||||
public String getExt6() {
|
||||
return this.ext6;
|
||||
}
|
||||
|
||||
public void setExt6(String ext6) {
|
||||
this.ext6 = ext6;
|
||||
}
|
||||
|
||||
public String getExt7() {
|
||||
return this.ext7;
|
||||
}
|
||||
|
||||
public void setExt7(String ext7) {
|
||||
this.ext7 = ext7;
|
||||
}
|
||||
|
||||
public String getExt8() {
|
||||
return this.ext8;
|
||||
}
|
||||
|
||||
public void setExt8(String ext8) {
|
||||
this.ext8 = ext8;
|
||||
}
|
||||
|
||||
public String getExt9() {
|
||||
return this.ext9;
|
||||
}
|
||||
|
||||
public void setExt9(String ext9) {
|
||||
this.ext9 = ext9;
|
||||
}
|
||||
|
||||
public String getExt10() {
|
||||
return this.ext10;
|
||||
}
|
||||
|
||||
public void setExt10(String ext10) {
|
||||
this.ext10 = ext10;
|
||||
}
|
||||
|
||||
public String getExt11() {
|
||||
return this.ext11;
|
||||
}
|
||||
|
||||
public void setExt11(String ext11) {
|
||||
this.ext11 = ext11;
|
||||
}
|
||||
|
||||
public String getExt12() {
|
||||
return this.ext12;
|
||||
}
|
||||
|
||||
public void setExt12(String ext12) {
|
||||
this.ext12 = ext12;
|
||||
}
|
||||
|
||||
public String getExt13() {
|
||||
return this.ext13;
|
||||
}
|
||||
|
||||
public void setExt13(String ext13) {
|
||||
this.ext13 = ext13;
|
||||
}
|
||||
|
||||
public String getExt14() {
|
||||
return this.ext14;
|
||||
}
|
||||
|
||||
public void setExt14(String ext14) {
|
||||
this.ext14 = ext14;
|
||||
}
|
||||
|
||||
public String getExt15() {
|
||||
return this.ext15;
|
||||
}
|
||||
|
||||
public void setExt15(String ext15) {
|
||||
this.ext15 = ext15;
|
||||
}
|
||||
|
||||
public String getExt16() {
|
||||
return this.ext16;
|
||||
}
|
||||
|
||||
public void setExt16(String ext16) {
|
||||
this.ext16 = ext16;
|
||||
}
|
||||
|
||||
public String getExt17() {
|
||||
return this.ext17;
|
||||
}
|
||||
|
||||
public void setExt17(String ext17) {
|
||||
this.ext17 = ext17;
|
||||
}
|
||||
|
||||
public String getExt18() {
|
||||
return this.ext18;
|
||||
}
|
||||
|
||||
public void setExt18(String ext18) {
|
||||
this.ext18 = ext18;
|
||||
}
|
||||
|
||||
public String getExt19() {
|
||||
return this.ext19;
|
||||
}
|
||||
|
||||
public void setExt19(String ext19) {
|
||||
this.ext19 = ext19;
|
||||
}
|
||||
|
||||
public String getExt20() {
|
||||
return this.ext20;
|
||||
}
|
||||
|
||||
public void setExt20(String ext20) {
|
||||
this.ext20 = ext20;
|
||||
}
|
||||
|
||||
public String getExt21() {
|
||||
return this.ext21;
|
||||
}
|
||||
|
||||
public void setExt21(String ext21) {
|
||||
this.ext21 = ext21;
|
||||
}
|
||||
|
||||
public String getExt22() {
|
||||
return this.ext22;
|
||||
}
|
||||
|
||||
public void setExt22(String ext22) {
|
||||
this.ext22 = ext22;
|
||||
}
|
||||
|
||||
public String getExt23() {
|
||||
return this.ext23;
|
||||
}
|
||||
|
||||
public void setExt23(String ext23) {
|
||||
this.ext23 = ext23;
|
||||
}
|
||||
|
||||
public String getExt24() {
|
||||
return this.ext24;
|
||||
}
|
||||
|
||||
public void setExt24(String ext24) {
|
||||
this.ext24 = ext24;
|
||||
}
|
||||
|
||||
public String getExt25() {
|
||||
return this.ext25;
|
||||
}
|
||||
|
||||
public void setExt25(String ext25) {
|
||||
this.ext25 = ext25;
|
||||
}
|
||||
|
||||
public String getExt26() {
|
||||
return this.ext26;
|
||||
}
|
||||
|
||||
public void setExt26(String ext26) {
|
||||
this.ext26 = ext26;
|
||||
}
|
||||
|
||||
public String getExt27() {
|
||||
return this.ext27;
|
||||
}
|
||||
|
||||
public void setExt27(String ext27) {
|
||||
this.ext27 = ext27;
|
||||
}
|
||||
|
||||
public String getExt28() {
|
||||
return this.ext28;
|
||||
}
|
||||
|
||||
public void setExt28(String ext28) {
|
||||
this.ext28 = ext28;
|
||||
}
|
||||
|
||||
public String getExt29() {
|
||||
return this.ext29;
|
||||
}
|
||||
|
||||
public void setExt29(String ext29) {
|
||||
this.ext29 = ext29;
|
||||
}
|
||||
|
||||
public String getExt30() {
|
||||
return this.ext30;
|
||||
}
|
||||
|
||||
public void setExt30(String ext30) {
|
||||
this.ext30 = ext30;
|
||||
}
|
||||
|
||||
public String getExt31() {
|
||||
return this.ext31;
|
||||
}
|
||||
|
||||
public void setExt31(String ext31) {
|
||||
this.ext31 = ext31;
|
||||
}
|
||||
|
||||
public String getExt32() {
|
||||
return this.ext32;
|
||||
}
|
||||
|
||||
public void setExt32(String ext32) {
|
||||
this.ext32 = ext32;
|
||||
}
|
||||
|
||||
public String getExt33() {
|
||||
return this.ext33;
|
||||
}
|
||||
|
||||
public void setExt33(String ext33) {
|
||||
this.ext33 = ext33;
|
||||
}
|
||||
|
||||
public String getExt34() {
|
||||
return this.ext34;
|
||||
}
|
||||
|
||||
public void setExt34(String ext34) {
|
||||
this.ext34 = ext34;
|
||||
}
|
||||
|
||||
public String getExt35() {
|
||||
return this.ext35;
|
||||
}
|
||||
|
||||
public void setExt35(String ext35) {
|
||||
this.ext35 = ext35;
|
||||
}
|
||||
|
||||
public String getExt36() {
|
||||
return this.ext36;
|
||||
}
|
||||
|
||||
public void setExt36(String ext36) {
|
||||
this.ext36 = ext36;
|
||||
}
|
||||
|
||||
public String getExt37() {
|
||||
return this.ext37;
|
||||
}
|
||||
|
||||
public void setExt37(String ext37) {
|
||||
this.ext37 = ext37;
|
||||
}
|
||||
|
||||
public String getExt38() {
|
||||
return this.ext38;
|
||||
}
|
||||
|
||||
public void setExt38(String ext38) {
|
||||
this.ext38 = ext38;
|
||||
}
|
||||
|
||||
public String getExt39() {
|
||||
return this.ext39;
|
||||
}
|
||||
|
||||
public void setExt39(String ext39) {
|
||||
this.ext39 = ext39;
|
||||
}
|
||||
|
||||
public String getExt40() {
|
||||
return this.ext40;
|
||||
}
|
||||
|
||||
public void setExt40(String ext40) {
|
||||
this.ext40 = ext40;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
return this.userName;
|
||||
}
|
||||
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public Short getCreateSysAccount() {
|
||||
return this.createSysAccount;
|
||||
}
|
||||
|
||||
public void setCreateSysAccount(Short createSysAccount) {
|
||||
this.createSysAccount = createSysAccount;
|
||||
}
|
||||
|
||||
public String getSysAccountId() {
|
||||
return this.sysAccountId;
|
||||
}
|
||||
|
||||
public void setSysAccountId(String sysAccountId) {
|
||||
this.sysAccountId = sysAccountId;
|
||||
}
|
||||
|
||||
public Short getSource() {
|
||||
return this.source;
|
||||
}
|
||||
|
||||
public void setSource(Short source) {
|
||||
this.source = source;
|
||||
}
|
||||
|
||||
public String getIcCardNo() {
|
||||
return this.icCardNo;
|
||||
}
|
||||
|
||||
public void setIcCardNo(String icCardNo) {
|
||||
this.icCardNo = icCardNo;
|
||||
}
|
||||
|
||||
public String getIcCardType() {
|
||||
return this.icCardType;
|
||||
}
|
||||
|
||||
public void setIcCardType(String icCardType) {
|
||||
this.icCardType = icCardType;
|
||||
}
|
||||
}
|
||||
|
||||
-110
@@ -1,110 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import cn.cloudwalk.data.organization.entity.ImgStorePerson;
|
||||
|
||||
public class ImgStorePersonAudit
|
||||
extends ImgStorePerson {
|
||||
private Short auditStatus;
|
||||
private String deviceCode;
|
||||
private String deviceName;
|
||||
private String organizationIds;
|
||||
private String organizationNames;
|
||||
private String labelIds;
|
||||
private String labelNames;
|
||||
private String userProperties;
|
||||
private String userPropertiesName;
|
||||
private String frontIdentityPicture;
|
||||
private String reverseIdentityPicture;
|
||||
|
||||
public String getFrontIdentityPicture() {
|
||||
return this.frontIdentityPicture;
|
||||
}
|
||||
|
||||
public void setFrontIdentityPicture(String frontIdentityPicture) {
|
||||
this.frontIdentityPicture = frontIdentityPicture;
|
||||
}
|
||||
|
||||
public String getReverseIdentityPicture() {
|
||||
return this.reverseIdentityPicture;
|
||||
}
|
||||
|
||||
public void setReverseIdentityPicture(String reverseIdentityPicture) {
|
||||
this.reverseIdentityPicture = reverseIdentityPicture;
|
||||
}
|
||||
|
||||
public Short getAuditStatus() {
|
||||
return this.auditStatus;
|
||||
}
|
||||
|
||||
public void setAuditStatus(Short auditStatus) {
|
||||
this.auditStatus = auditStatus;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return this.deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getOrganizationIds() {
|
||||
return this.organizationIds;
|
||||
}
|
||||
|
||||
public void setOrganizationIds(String organizationIds) {
|
||||
this.organizationIds = organizationIds;
|
||||
}
|
||||
|
||||
public String getOrganizationNames() {
|
||||
return this.organizationNames;
|
||||
}
|
||||
|
||||
public void setOrganizationNames(String organizationNames) {
|
||||
this.organizationNames = organizationNames;
|
||||
}
|
||||
|
||||
public String getLabelIds() {
|
||||
return this.labelIds;
|
||||
}
|
||||
|
||||
public void setLabelIds(String labelIds) {
|
||||
this.labelIds = labelIds;
|
||||
}
|
||||
|
||||
public String getLabelNames() {
|
||||
return this.labelNames;
|
||||
}
|
||||
|
||||
public void setLabelNames(String labelNames) {
|
||||
this.labelNames = labelNames;
|
||||
}
|
||||
|
||||
public String getUserProperties() {
|
||||
return this.userProperties;
|
||||
}
|
||||
|
||||
public void setUserProperties(String userProperties) {
|
||||
this.userProperties = userProperties;
|
||||
}
|
||||
|
||||
public String getUserPropertiesName() {
|
||||
return this.userPropertiesName;
|
||||
}
|
||||
|
||||
public void setUserPropertiesName(String userPropertiesName) {
|
||||
this.userPropertiesName = userPropertiesName;
|
||||
}
|
||||
}
|
||||
|
||||
-54
@@ -1,54 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class ImgStorePersonAuditApply {
|
||||
private String id;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private Short auditStatus;
|
||||
|
||||
public ImgStorePersonAuditApply() {
|
||||
}
|
||||
|
||||
public ImgStorePersonAuditApply(String id, Long lastUpdateTime, String lastUpdateUserId, Short auditStatus) {
|
||||
this.id = id;
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
this.auditStatus = auditStatus;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Short getAuditStatus() {
|
||||
return this.auditStatus;
|
||||
}
|
||||
|
||||
public void setAuditStatus(Short auditStatus) {
|
||||
this.auditStatus = auditStatus;
|
||||
}
|
||||
}
|
||||
|
||||
-71
@@ -1,71 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class ImgStorePersonLabel {
|
||||
private String id;
|
||||
private String personId;
|
||||
private String labelId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId == null ? null : personId.trim();
|
||||
}
|
||||
|
||||
public String getLabelId() {
|
||||
return this.labelId;
|
||||
}
|
||||
|
||||
public void setLabelId(String labelId) {
|
||||
this.labelId = labelId == null ? null : labelId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
}
|
||||
|
||||
-71
@@ -1,71 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class ImgStorePersonOrganization {
|
||||
private String id;
|
||||
private String personId;
|
||||
private String orgId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId == null ? null : personId.trim();
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId == null ? null : orgId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
}
|
||||
|
||||
-402
@@ -1,402 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
public class ImgStorePersonProperties {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Short type;
|
||||
private Integer status;
|
||||
private Integer hasSysAccount;
|
||||
private Integer hasSysAccountAvailable;
|
||||
private Integer hasRequired;
|
||||
private Integer hasDefault;
|
||||
private Integer orderNum;
|
||||
private String reminder;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String arrayData;
|
||||
private Integer hasMultiple;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId == null ? null : businessId.trim();
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code == null ? null : code.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Short getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Short type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getHasSysAccount() {
|
||||
return this.hasSysAccount;
|
||||
}
|
||||
|
||||
public void setHasSysAccount(Integer hasSysAccount) {
|
||||
this.hasSysAccount = hasSysAccount;
|
||||
}
|
||||
|
||||
public Integer getHasSysAccountAvailable() {
|
||||
return this.hasSysAccountAvailable;
|
||||
}
|
||||
|
||||
public void setHasSysAccountAvailable(Integer hasSysAccountAvailable) {
|
||||
this.hasSysAccountAvailable = hasSysAccountAvailable;
|
||||
}
|
||||
|
||||
public Integer getHasRequired() {
|
||||
return this.hasRequired;
|
||||
}
|
||||
|
||||
public void setHasRequired(Integer hasRequired) {
|
||||
this.hasRequired = hasRequired;
|
||||
}
|
||||
|
||||
public Integer getHasDefault() {
|
||||
return this.hasDefault;
|
||||
}
|
||||
|
||||
public void setHasDefault(Integer hasDefault) {
|
||||
this.hasDefault = hasDefault;
|
||||
}
|
||||
|
||||
public Integer getOrderNum() {
|
||||
return this.orderNum;
|
||||
}
|
||||
|
||||
public void setOrderNum(Integer orderNum) {
|
||||
this.orderNum = orderNum;
|
||||
}
|
||||
|
||||
public String getReminder() {
|
||||
return this.reminder;
|
||||
}
|
||||
|
||||
public void setReminder(String reminder) {
|
||||
this.reminder = reminder == null ? null : reminder.trim();
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getArrayData() {
|
||||
return this.arrayData;
|
||||
}
|
||||
|
||||
public void setArrayData(String arrayData) {
|
||||
this.arrayData = arrayData;
|
||||
}
|
||||
|
||||
public Integer getHasMultiple() {
|
||||
return this.hasMultiple;
|
||||
}
|
||||
|
||||
public void setHasMultiple(Integer hasMultiple) {
|
||||
this.hasMultiple = hasMultiple;
|
||||
}
|
||||
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) {
|
||||
return true;
|
||||
}
|
||||
if (o == null || this.getClass() != o.getClass()) {
|
||||
return false;
|
||||
}
|
||||
ImgStorePersonProperties that = (ImgStorePersonProperties)o;
|
||||
return Objects.equals(this.id, that.id);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return Objects.hash(this.id);
|
||||
}
|
||||
|
||||
public static Builder getBuilder() {
|
||||
return new Builder();
|
||||
}
|
||||
|
||||
public ImgStorePersonProperties() {
|
||||
}
|
||||
|
||||
public ImgStorePersonProperties(Builder builder) {
|
||||
this.id = builder.id;
|
||||
this.businessId = builder.businessId;
|
||||
this.code = builder.code;
|
||||
this.name = builder.name;
|
||||
this.type = builder.type;
|
||||
this.status = builder.status;
|
||||
this.hasSysAccount = builder.hasSysAccount;
|
||||
this.hasSysAccountAvailable = builder.hasSysAccountAvailable;
|
||||
this.hasRequired = builder.hasRequired;
|
||||
this.hasDefault = builder.hasDefault;
|
||||
this.orderNum = builder.orderNum;
|
||||
this.reminder = builder.reminder;
|
||||
this.createUserId = builder.createUserId;
|
||||
this.createTime = builder.createTime;
|
||||
this.lastUpdateUserId = builder.lastUpdateUserId;
|
||||
this.lastUpdateTime = builder.lastUpdateTime;
|
||||
this.arrayData = builder.arrayData;
|
||||
this.hasMultiple = builder.hasMultiple;
|
||||
}
|
||||
|
||||
public static class Builder {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Short type;
|
||||
private Integer status;
|
||||
private Integer hasSysAccount;
|
||||
private Integer hasSysAccountAvailable;
|
||||
private Integer hasRequired;
|
||||
private Integer hasDefault;
|
||||
private Integer orderNum;
|
||||
private String reminder;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String arrayData;
|
||||
private Integer hasMultiple;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public Short getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public Integer getHasSysAccount() {
|
||||
return this.hasSysAccount;
|
||||
}
|
||||
|
||||
public Integer getHasSysAccountAvailable() {
|
||||
return this.hasSysAccountAvailable;
|
||||
}
|
||||
|
||||
public Integer getHasRequired() {
|
||||
return this.hasRequired;
|
||||
}
|
||||
|
||||
public Integer getHasDefault() {
|
||||
return this.hasDefault;
|
||||
}
|
||||
|
||||
public Integer getOrderNum() {
|
||||
return this.orderNum;
|
||||
}
|
||||
|
||||
public String getReminder() {
|
||||
return this.reminder;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getArrayData() {
|
||||
return this.arrayData;
|
||||
}
|
||||
|
||||
public Integer getHasMultiple() {
|
||||
return this.hasMultiple;
|
||||
}
|
||||
|
||||
public Builder setId(String id) {
|
||||
this.id = id;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setCode(String code) {
|
||||
this.code = code;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setName(String name) {
|
||||
this.name = name;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setType(Short type) {
|
||||
this.type = type;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setStatus(Integer status) {
|
||||
this.status = status;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setHasSysAccount(Integer hasSysAccount) {
|
||||
this.hasSysAccount = hasSysAccount;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setHasSysAccountAvailable(Integer hasSysAccountAvailable) {
|
||||
this.hasSysAccountAvailable = hasSysAccountAvailable;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setHasRequired(Integer hasRequired) {
|
||||
this.hasRequired = hasRequired;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setHasDefault(Integer hasDefault) {
|
||||
this.hasDefault = hasDefault;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setOrderNum(Integer orderNum) {
|
||||
this.orderNum = orderNum;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setReminder(String reminder) {
|
||||
this.reminder = reminder;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setArrayData(String arrayData) {
|
||||
this.arrayData = arrayData;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setHasMultiple(Integer hasMultiple) {
|
||||
this.hasMultiple = hasMultiple;
|
||||
return this;
|
||||
}
|
||||
|
||||
public ImgStorePersonProperties bulid() {
|
||||
return new ImgStorePersonProperties(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
-71
@@ -1,71 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class ImgStoreUnitArea {
|
||||
private String id;
|
||||
private String unitId;
|
||||
private String areaId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getUnitId() {
|
||||
return this.unitId;
|
||||
}
|
||||
|
||||
public void setUnitId(String unitId) {
|
||||
this.unitId = unitId == null ? null : unitId.trim();
|
||||
}
|
||||
|
||||
public String getAreaId() {
|
||||
return this.areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(String areaId) {
|
||||
this.areaId = areaId == null ? null : areaId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
}
|
||||
|
||||
-116
@@ -1,116 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class IsImageStoreAssociated {
|
||||
private String id;
|
||||
private String imageStoreId;
|
||||
private String associatedObjectId;
|
||||
private Integer associatedObjectIdType;
|
||||
private Integer associatedAction;
|
||||
private Long expiryBeginDate;
|
||||
private Long expiryEndDate;
|
||||
private String validDateCron;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId == null ? null : imageStoreId.trim();
|
||||
}
|
||||
|
||||
public String getAssociatedObjectId() {
|
||||
return this.associatedObjectId;
|
||||
}
|
||||
|
||||
public void setAssociatedObjectId(String associatedObjectId) {
|
||||
this.associatedObjectId = associatedObjectId == null ? null : associatedObjectId.trim();
|
||||
}
|
||||
|
||||
public Integer getAssociatedObjectIdType() {
|
||||
return this.associatedObjectIdType;
|
||||
}
|
||||
|
||||
public void setAssociatedObjectIdType(Integer associatedObjectIdType) {
|
||||
this.associatedObjectIdType = associatedObjectIdType;
|
||||
}
|
||||
|
||||
public Integer getAssociatedAction() {
|
||||
return this.associatedAction;
|
||||
}
|
||||
|
||||
public void setAssociatedAction(Integer associatedAction) {
|
||||
this.associatedAction = associatedAction;
|
||||
}
|
||||
|
||||
public Long getExpiryBeginDate() {
|
||||
return this.expiryBeginDate;
|
||||
}
|
||||
|
||||
public void setExpiryBeginDate(Long expiryBeginDate) {
|
||||
this.expiryBeginDate = expiryBeginDate;
|
||||
}
|
||||
|
||||
public Long getExpiryEndDate() {
|
||||
return this.expiryEndDate;
|
||||
}
|
||||
|
||||
public void setExpiryEndDate(Long expiryEndDate) {
|
||||
this.expiryEndDate = expiryEndDate;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public String getValidDateCron() {
|
||||
return this.validDateCron;
|
||||
}
|
||||
|
||||
public void setValidDateCron(String validDateCron) {
|
||||
this.validDateCron = validDateCron;
|
||||
}
|
||||
}
|
||||
|
||||
-98
@@ -1,98 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class Label {
|
||||
private String id;
|
||||
private String name;
|
||||
private String code;
|
||||
private Short isDel;
|
||||
private Short addType;
|
||||
private String businessId;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public Short getAddType() {
|
||||
return this.addType;
|
||||
}
|
||||
|
||||
public void setAddType(Short addType) {
|
||||
this.addType = addType;
|
||||
}
|
||||
}
|
||||
|
||||
-89
@@ -1,89 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class OperationLog {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String createUserId;
|
||||
private String createUserName;
|
||||
private Long createTime;
|
||||
private String interfaceName;
|
||||
private String content;
|
||||
private String module;
|
||||
private String callIP;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public String getCreateUserName() {
|
||||
return this.createUserName;
|
||||
}
|
||||
|
||||
public void setCreateUserName(String createUserName) {
|
||||
this.createUserName = createUserName;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getInterfaceName() {
|
||||
return this.interfaceName;
|
||||
}
|
||||
|
||||
public void setInterfaceName(String interfaceName) {
|
||||
this.interfaceName = interfaceName;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return this.content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getModule() {
|
||||
return this.module;
|
||||
}
|
||||
|
||||
public void setModule(String module) {
|
||||
this.module = module;
|
||||
}
|
||||
|
||||
public String getCallIP() {
|
||||
return this.callIP;
|
||||
}
|
||||
|
||||
public void setCallIP(String callIP) {
|
||||
this.callIP = callIP;
|
||||
}
|
||||
}
|
||||
|
||||
-35
@@ -1,35 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class OrgFloor {
|
||||
private String orgId;
|
||||
private String zoneId;
|
||||
private String zoneName;
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
public String getZoneId() {
|
||||
return this.zoneId;
|
||||
}
|
||||
|
||||
public void setZoneId(String zoneId) {
|
||||
this.zoneId = zoneId;
|
||||
}
|
||||
|
||||
public String getZoneName() {
|
||||
return this.zoneName;
|
||||
}
|
||||
|
||||
public void setZoneName(String zoneName) {
|
||||
this.zoneName = zoneName;
|
||||
}
|
||||
}
|
||||
|
||||
-386
@@ -1,386 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class Organization {
|
||||
private String id;
|
||||
private String name;
|
||||
private Integer orderBy;
|
||||
private String parentId;
|
||||
private Short isDel;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String businessId;
|
||||
private String typeId;
|
||||
private Integer isValid;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
private String ext4;
|
||||
private String ext5;
|
||||
private String ext6;
|
||||
private String ext7;
|
||||
private String ext8;
|
||||
private String ext9;
|
||||
private String ext10;
|
||||
private String ext11;
|
||||
private String ext12;
|
||||
private String ext13;
|
||||
private String ext14;
|
||||
private String ext15;
|
||||
private String ext16;
|
||||
private String ext17;
|
||||
private String ext18;
|
||||
private String ext19;
|
||||
private String ext20;
|
||||
private String ext21;
|
||||
private String ext22;
|
||||
private String ext23;
|
||||
private String ext24;
|
||||
private String ext25;
|
||||
private String ext26;
|
||||
private String ext27;
|
||||
private String ext28;
|
||||
private String ext29;
|
||||
private String ext30;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Integer getOrderBy() {
|
||||
return this.orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(Integer orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId == null ? null : parentId.trim();
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getTypeId() {
|
||||
return this.typeId;
|
||||
}
|
||||
|
||||
public void setTypeId(String typeId) {
|
||||
this.typeId = typeId;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
|
||||
public String getExt4() {
|
||||
return this.ext4;
|
||||
}
|
||||
|
||||
public void setExt4(String ext4) {
|
||||
this.ext4 = ext4;
|
||||
}
|
||||
|
||||
public String getExt5() {
|
||||
return this.ext5;
|
||||
}
|
||||
|
||||
public void setExt5(String ext5) {
|
||||
this.ext5 = ext5;
|
||||
}
|
||||
|
||||
public String getExt6() {
|
||||
return this.ext6;
|
||||
}
|
||||
|
||||
public void setExt6(String ext6) {
|
||||
this.ext6 = ext6;
|
||||
}
|
||||
|
||||
public String getExt7() {
|
||||
return this.ext7;
|
||||
}
|
||||
|
||||
public void setExt7(String ext7) {
|
||||
this.ext7 = ext7;
|
||||
}
|
||||
|
||||
public String getExt8() {
|
||||
return this.ext8;
|
||||
}
|
||||
|
||||
public void setExt8(String ext8) {
|
||||
this.ext8 = ext8;
|
||||
}
|
||||
|
||||
public String getExt9() {
|
||||
return this.ext9;
|
||||
}
|
||||
|
||||
public void setExt9(String ext9) {
|
||||
this.ext9 = ext9;
|
||||
}
|
||||
|
||||
public String getExt10() {
|
||||
return this.ext10;
|
||||
}
|
||||
|
||||
public void setExt10(String ext10) {
|
||||
this.ext10 = ext10;
|
||||
}
|
||||
|
||||
public String getExt11() {
|
||||
return this.ext11;
|
||||
}
|
||||
|
||||
public void setExt11(String ext11) {
|
||||
this.ext11 = ext11;
|
||||
}
|
||||
|
||||
public String getExt12() {
|
||||
return this.ext12;
|
||||
}
|
||||
|
||||
public void setExt12(String ext12) {
|
||||
this.ext12 = ext12;
|
||||
}
|
||||
|
||||
public String getExt13() {
|
||||
return this.ext13;
|
||||
}
|
||||
|
||||
public void setExt13(String ext13) {
|
||||
this.ext13 = ext13;
|
||||
}
|
||||
|
||||
public String getExt14() {
|
||||
return this.ext14;
|
||||
}
|
||||
|
||||
public void setExt14(String ext14) {
|
||||
this.ext14 = ext14;
|
||||
}
|
||||
|
||||
public String getExt15() {
|
||||
return this.ext15;
|
||||
}
|
||||
|
||||
public void setExt15(String ext15) {
|
||||
this.ext15 = ext15;
|
||||
}
|
||||
|
||||
public String getExt16() {
|
||||
return this.ext16;
|
||||
}
|
||||
|
||||
public void setExt16(String ext16) {
|
||||
this.ext16 = ext16;
|
||||
}
|
||||
|
||||
public String getExt17() {
|
||||
return this.ext17;
|
||||
}
|
||||
|
||||
public void setExt17(String ext17) {
|
||||
this.ext17 = ext17;
|
||||
}
|
||||
|
||||
public String getExt18() {
|
||||
return this.ext18;
|
||||
}
|
||||
|
||||
public void setExt18(String ext18) {
|
||||
this.ext18 = ext18;
|
||||
}
|
||||
|
||||
public String getExt19() {
|
||||
return this.ext19;
|
||||
}
|
||||
|
||||
public void setExt19(String ext19) {
|
||||
this.ext19 = ext19;
|
||||
}
|
||||
|
||||
public String getExt20() {
|
||||
return this.ext20;
|
||||
}
|
||||
|
||||
public void setExt20(String ext20) {
|
||||
this.ext20 = ext20;
|
||||
}
|
||||
|
||||
public String getExt21() {
|
||||
return this.ext21;
|
||||
}
|
||||
|
||||
public void setExt21(String ext21) {
|
||||
this.ext21 = ext21;
|
||||
}
|
||||
|
||||
public String getExt22() {
|
||||
return this.ext22;
|
||||
}
|
||||
|
||||
public void setExt22(String ext22) {
|
||||
this.ext22 = ext22;
|
||||
}
|
||||
|
||||
public String getExt23() {
|
||||
return this.ext23;
|
||||
}
|
||||
|
||||
public void setExt23(String ext23) {
|
||||
this.ext23 = ext23;
|
||||
}
|
||||
|
||||
public String getExt24() {
|
||||
return this.ext24;
|
||||
}
|
||||
|
||||
public void setExt24(String ext24) {
|
||||
this.ext24 = ext24;
|
||||
}
|
||||
|
||||
public String getExt25() {
|
||||
return this.ext25;
|
||||
}
|
||||
|
||||
public void setExt25(String ext25) {
|
||||
this.ext25 = ext25;
|
||||
}
|
||||
|
||||
public String getExt26() {
|
||||
return this.ext26;
|
||||
}
|
||||
|
||||
public void setExt26(String ext26) {
|
||||
this.ext26 = ext26;
|
||||
}
|
||||
|
||||
public String getExt27() {
|
||||
return this.ext27;
|
||||
}
|
||||
|
||||
public void setExt27(String ext27) {
|
||||
this.ext27 = ext27;
|
||||
}
|
||||
|
||||
public String getExt28() {
|
||||
return this.ext28;
|
||||
}
|
||||
|
||||
public void setExt28(String ext28) {
|
||||
this.ext28 = ext28;
|
||||
}
|
||||
|
||||
public String getExt29() {
|
||||
return this.ext29;
|
||||
}
|
||||
|
||||
public void setExt29(String ext29) {
|
||||
this.ext29 = ext29;
|
||||
}
|
||||
|
||||
public String getExt30() {
|
||||
return this.ext30;
|
||||
}
|
||||
|
||||
public void setExt30(String ext30) {
|
||||
this.ext30 = ext30;
|
||||
}
|
||||
|
||||
public Integer getIsValid() {
|
||||
return this.isValid;
|
||||
}
|
||||
|
||||
public void setIsValid(Integer isValid) {
|
||||
this.isValid = isValid;
|
||||
}
|
||||
}
|
||||
|
||||
-397
@@ -1,397 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.OrganizationExtendDTO;
|
||||
|
||||
public class OrganizationDetail {
|
||||
private String id;
|
||||
private String name;
|
||||
private Integer orderBy;
|
||||
private String parentId;
|
||||
private Short isDel;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String businessId;
|
||||
private String typeId;
|
||||
private Integer isValid;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
private String ext4;
|
||||
private String ext5;
|
||||
private String ext6;
|
||||
private String ext7;
|
||||
private String ext8;
|
||||
private String ext9;
|
||||
private String ext10;
|
||||
private String ext11;
|
||||
private String ext12;
|
||||
private String ext13;
|
||||
private String ext14;
|
||||
private String ext15;
|
||||
private String ext16;
|
||||
private String ext17;
|
||||
private String ext18;
|
||||
private String ext19;
|
||||
private String ext20;
|
||||
private String ext21;
|
||||
private String ext22;
|
||||
private String ext23;
|
||||
private String ext24;
|
||||
private String ext25;
|
||||
private String ext26;
|
||||
private String ext27;
|
||||
private String ext28;
|
||||
private String ext29;
|
||||
private String ext30;
|
||||
private OrganizationExtendDTO extend;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Integer getOrderBy() {
|
||||
return this.orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(Integer orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId == null ? null : parentId.trim();
|
||||
}
|
||||
|
||||
public Short getIsDel() {
|
||||
return this.isDel;
|
||||
}
|
||||
|
||||
public void setIsDel(Short isDel) {
|
||||
this.isDel = isDel;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getTypeId() {
|
||||
return this.typeId;
|
||||
}
|
||||
|
||||
public void setTypeId(String typeId) {
|
||||
this.typeId = typeId;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
|
||||
public String getExt4() {
|
||||
return this.ext4;
|
||||
}
|
||||
|
||||
public void setExt4(String ext4) {
|
||||
this.ext4 = ext4;
|
||||
}
|
||||
|
||||
public String getExt5() {
|
||||
return this.ext5;
|
||||
}
|
||||
|
||||
public void setExt5(String ext5) {
|
||||
this.ext5 = ext5;
|
||||
}
|
||||
|
||||
public String getExt6() {
|
||||
return this.ext6;
|
||||
}
|
||||
|
||||
public void setExt6(String ext6) {
|
||||
this.ext6 = ext6;
|
||||
}
|
||||
|
||||
public String getExt7() {
|
||||
return this.ext7;
|
||||
}
|
||||
|
||||
public void setExt7(String ext7) {
|
||||
this.ext7 = ext7;
|
||||
}
|
||||
|
||||
public String getExt8() {
|
||||
return this.ext8;
|
||||
}
|
||||
|
||||
public void setExt8(String ext8) {
|
||||
this.ext8 = ext8;
|
||||
}
|
||||
|
||||
public String getExt9() {
|
||||
return this.ext9;
|
||||
}
|
||||
|
||||
public void setExt9(String ext9) {
|
||||
this.ext9 = ext9;
|
||||
}
|
||||
|
||||
public String getExt10() {
|
||||
return this.ext10;
|
||||
}
|
||||
|
||||
public void setExt10(String ext10) {
|
||||
this.ext10 = ext10;
|
||||
}
|
||||
|
||||
public String getExt11() {
|
||||
return this.ext11;
|
||||
}
|
||||
|
||||
public void setExt11(String ext11) {
|
||||
this.ext11 = ext11;
|
||||
}
|
||||
|
||||
public String getExt12() {
|
||||
return this.ext12;
|
||||
}
|
||||
|
||||
public void setExt12(String ext12) {
|
||||
this.ext12 = ext12;
|
||||
}
|
||||
|
||||
public String getExt13() {
|
||||
return this.ext13;
|
||||
}
|
||||
|
||||
public void setExt13(String ext13) {
|
||||
this.ext13 = ext13;
|
||||
}
|
||||
|
||||
public String getExt14() {
|
||||
return this.ext14;
|
||||
}
|
||||
|
||||
public void setExt14(String ext14) {
|
||||
this.ext14 = ext14;
|
||||
}
|
||||
|
||||
public String getExt15() {
|
||||
return this.ext15;
|
||||
}
|
||||
|
||||
public void setExt15(String ext15) {
|
||||
this.ext15 = ext15;
|
||||
}
|
||||
|
||||
public String getExt16() {
|
||||
return this.ext16;
|
||||
}
|
||||
|
||||
public void setExt16(String ext16) {
|
||||
this.ext16 = ext16;
|
||||
}
|
||||
|
||||
public String getExt17() {
|
||||
return this.ext17;
|
||||
}
|
||||
|
||||
public void setExt17(String ext17) {
|
||||
this.ext17 = ext17;
|
||||
}
|
||||
|
||||
public String getExt18() {
|
||||
return this.ext18;
|
||||
}
|
||||
|
||||
public void setExt18(String ext18) {
|
||||
this.ext18 = ext18;
|
||||
}
|
||||
|
||||
public String getExt19() {
|
||||
return this.ext19;
|
||||
}
|
||||
|
||||
public void setExt19(String ext19) {
|
||||
this.ext19 = ext19;
|
||||
}
|
||||
|
||||
public String getExt20() {
|
||||
return this.ext20;
|
||||
}
|
||||
|
||||
public void setExt20(String ext20) {
|
||||
this.ext20 = ext20;
|
||||
}
|
||||
|
||||
public String getExt21() {
|
||||
return this.ext21;
|
||||
}
|
||||
|
||||
public void setExt21(String ext21) {
|
||||
this.ext21 = ext21;
|
||||
}
|
||||
|
||||
public String getExt22() {
|
||||
return this.ext22;
|
||||
}
|
||||
|
||||
public void setExt22(String ext22) {
|
||||
this.ext22 = ext22;
|
||||
}
|
||||
|
||||
public String getExt23() {
|
||||
return this.ext23;
|
||||
}
|
||||
|
||||
public void setExt23(String ext23) {
|
||||
this.ext23 = ext23;
|
||||
}
|
||||
|
||||
public String getExt24() {
|
||||
return this.ext24;
|
||||
}
|
||||
|
||||
public void setExt24(String ext24) {
|
||||
this.ext24 = ext24;
|
||||
}
|
||||
|
||||
public String getExt25() {
|
||||
return this.ext25;
|
||||
}
|
||||
|
||||
public void setExt25(String ext25) {
|
||||
this.ext25 = ext25;
|
||||
}
|
||||
|
||||
public String getExt26() {
|
||||
return this.ext26;
|
||||
}
|
||||
|
||||
public void setExt26(String ext26) {
|
||||
this.ext26 = ext26;
|
||||
}
|
||||
|
||||
public String getExt27() {
|
||||
return this.ext27;
|
||||
}
|
||||
|
||||
public void setExt27(String ext27) {
|
||||
this.ext27 = ext27;
|
||||
}
|
||||
|
||||
public String getExt28() {
|
||||
return this.ext28;
|
||||
}
|
||||
|
||||
public void setExt28(String ext28) {
|
||||
this.ext28 = ext28;
|
||||
}
|
||||
|
||||
public String getExt29() {
|
||||
return this.ext29;
|
||||
}
|
||||
|
||||
public void setExt29(String ext29) {
|
||||
this.ext29 = ext29;
|
||||
}
|
||||
|
||||
public String getExt30() {
|
||||
return this.ext30;
|
||||
}
|
||||
|
||||
public void setExt30(String ext30) {
|
||||
this.ext30 = ext30;
|
||||
}
|
||||
|
||||
public Integer getIsValid() {
|
||||
return this.isValid;
|
||||
}
|
||||
|
||||
public void setIsValid(Integer isValid) {
|
||||
this.isValid = isValid;
|
||||
}
|
||||
|
||||
public OrganizationExtendDTO getExtend() {
|
||||
return this.extend;
|
||||
}
|
||||
|
||||
public void setExtend(OrganizationExtendDTO extend) {
|
||||
this.extend = extend;
|
||||
}
|
||||
}
|
||||
|
||||
-93
@@ -1,93 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class OrganizationExtra
|
||||
implements Serializable {
|
||||
private String id;
|
||||
private String organizationId;
|
||||
private Integer employeeNumber;
|
||||
private Integer orgCarNumber;
|
||||
private Integer employeeCarNumber;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getOrganizationId() {
|
||||
return this.organizationId;
|
||||
}
|
||||
|
||||
public void setOrganizationId(String organizationId) {
|
||||
this.organizationId = organizationId;
|
||||
}
|
||||
|
||||
public Integer getEmployeeNumber() {
|
||||
return this.employeeNumber;
|
||||
}
|
||||
|
||||
public void setEmployeeNumber(Integer employeeNumber) {
|
||||
this.employeeNumber = employeeNumber;
|
||||
}
|
||||
|
||||
public Integer getOrgCarNumber() {
|
||||
return this.orgCarNumber;
|
||||
}
|
||||
|
||||
public void setOrgCarNumber(Integer orgCarNumber) {
|
||||
this.orgCarNumber = orgCarNumber;
|
||||
}
|
||||
|
||||
public Integer getEmployeeCarNumber() {
|
||||
return this.employeeCarNumber;
|
||||
}
|
||||
|
||||
public void setEmployeeCarNumber(Integer employeeCarNumber) {
|
||||
this.employeeCarNumber = employeeCarNumber;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
}
|
||||
|
||||
-35
@@ -1,35 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class OrganizationImageStore {
|
||||
private String applicationId;
|
||||
private String orgId;
|
||||
private String imageStoreId;
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId == null ? null : applicationId.trim();
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId == null ? null : orgId.trim();
|
||||
}
|
||||
|
||||
public String getImageStoreId() {
|
||||
return this.imageStoreId;
|
||||
}
|
||||
|
||||
public void setImageStoreId(String imageStoreId) {
|
||||
this.imageStoreId = imageStoreId == null ? null : imageStoreId.trim();
|
||||
}
|
||||
}
|
||||
|
||||
-107
@@ -1,107 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class OrganizationType {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Integer hasLowerLevel;
|
||||
private Integer hasDefault;
|
||||
private Integer status;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId == null ? null : businessId.trim();
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code == null ? null : code.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Integer getHasLowerLevel() {
|
||||
return this.hasLowerLevel;
|
||||
}
|
||||
|
||||
public void setHasLowerLevel(Integer hasLowerLevel) {
|
||||
this.hasLowerLevel = hasLowerLevel;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public Integer getHasDefault() {
|
||||
return this.hasDefault;
|
||||
}
|
||||
|
||||
public void setHasDefault(Integer hasDefault) {
|
||||
this.hasDefault = hasDefault;
|
||||
}
|
||||
}
|
||||
|
||||
-133
@@ -1,133 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
public class OrganizationTypeProperties {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String organizationTypeId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Integer status;
|
||||
private Integer hasRequired;
|
||||
private Integer orderNum;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId == null ? null : businessId.trim();
|
||||
}
|
||||
|
||||
public String getOrganizationTypeId() {
|
||||
return this.organizationTypeId;
|
||||
}
|
||||
|
||||
public void setOrganizationTypeId(String organizationTypeId) {
|
||||
this.organizationTypeId = organizationTypeId == null ? null : organizationTypeId.trim();
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code == null ? null : code.trim();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getHasRequired() {
|
||||
return this.hasRequired;
|
||||
}
|
||||
|
||||
public void setHasRequired(Integer hasRequired) {
|
||||
this.hasRequired = hasRequired;
|
||||
}
|
||||
|
||||
public Integer getOrderNum() {
|
||||
return this.orderNum;
|
||||
}
|
||||
|
||||
public void setOrderNum(Integer orderNum) {
|
||||
this.orderNum = orderNum;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) {
|
||||
return true;
|
||||
}
|
||||
if (o == null || this.getClass() != o.getClass()) {
|
||||
return false;
|
||||
}
|
||||
OrganizationTypeProperties that = (OrganizationTypeProperties)o;
|
||||
return Objects.equals(this.id, that.id);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return Objects.hash(this.id);
|
||||
}
|
||||
}
|
||||
|
||||
-80
@@ -1,80 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class PersonAccountCheckResult {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private String telephone;
|
||||
private String email;
|
||||
private String workCode;
|
||||
private String name;
|
||||
private String loginName;
|
||||
private String personId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getWorkCode() {
|
||||
return this.workCode;
|
||||
}
|
||||
|
||||
public void setWorkCode(String workCode) {
|
||||
this.workCode = workCode;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId;
|
||||
}
|
||||
|
||||
public String getLoginName() {
|
||||
return this.loginName;
|
||||
}
|
||||
|
||||
public void setLoginName(String loginName) {
|
||||
this.loginName = loginName;
|
||||
}
|
||||
}
|
||||
|
||||
-257
@@ -1,257 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class PersonPropertiesSwitch {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private Short status;
|
||||
private Boolean switchParam;
|
||||
private Integer sizeParam;
|
||||
private Boolean shapeParam;
|
||||
private Boolean skinColorParam;
|
||||
private Boolean defectsParam;
|
||||
private Boolean backgroundParam;
|
||||
private Integer backgroundObject;
|
||||
private String createUserId;
|
||||
private Long createTime;
|
||||
private String lastUpdateUserId;
|
||||
private Long lastUpdateTime;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public Boolean getSwitchParam() {
|
||||
return this.switchParam;
|
||||
}
|
||||
|
||||
public Integer getSizeParam() {
|
||||
return this.sizeParam;
|
||||
}
|
||||
|
||||
public Boolean getShapeParam() {
|
||||
return this.shapeParam;
|
||||
}
|
||||
|
||||
public Boolean getSkinColorParam() {
|
||||
return this.skinColorParam;
|
||||
}
|
||||
|
||||
public Boolean getDefectsParam() {
|
||||
return this.defectsParam;
|
||||
}
|
||||
|
||||
public Boolean getBackgroundParam() {
|
||||
return this.backgroundParam;
|
||||
}
|
||||
|
||||
public Integer getBackgroundObject() {
|
||||
return this.backgroundObject;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setSwitchParam(Boolean switchParam) {
|
||||
this.switchParam = switchParam;
|
||||
}
|
||||
|
||||
public void setSizeParam(Integer sizeParam) {
|
||||
this.sizeParam = sizeParam;
|
||||
}
|
||||
|
||||
public void setShapeParam(Boolean shapeParam) {
|
||||
this.shapeParam = shapeParam;
|
||||
}
|
||||
|
||||
public void setSkinColorParam(Boolean skinColorParam) {
|
||||
this.skinColorParam = skinColorParam;
|
||||
}
|
||||
|
||||
public void setDefectsParam(Boolean defectsParam) {
|
||||
this.defectsParam = defectsParam;
|
||||
}
|
||||
|
||||
public void setBackgroundParam(Boolean backgroundParam) {
|
||||
this.backgroundParam = backgroundParam;
|
||||
}
|
||||
|
||||
public void setBackgroundObject(Integer backgroundObject) {
|
||||
this.backgroundObject = backgroundObject;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public boolean equals(Object o) {
|
||||
if (o == this) {
|
||||
return true;
|
||||
}
|
||||
if (!(o instanceof PersonPropertiesSwitch)) {
|
||||
return false;
|
||||
}
|
||||
PersonPropertiesSwitch other = (PersonPropertiesSwitch)o;
|
||||
if (!other.canEqual(this)) {
|
||||
return false;
|
||||
}
|
||||
String this$id = this.getId();
|
||||
String other$id = other.getId();
|
||||
if (this$id == null ? other$id != null : !this$id.equals(other$id)) {
|
||||
return false;
|
||||
}
|
||||
String this$businessId = this.getBusinessId();
|
||||
String other$businessId = other.getBusinessId();
|
||||
if (this$businessId == null ? other$businessId != null : !this$businessId.equals(other$businessId)) {
|
||||
return false;
|
||||
}
|
||||
Short this$status = this.getStatus();
|
||||
Short other$status = other.getStatus();
|
||||
if (this$status == null ? other$status != null : !((Object)this$status).equals(other$status)) {
|
||||
return false;
|
||||
}
|
||||
Boolean this$switchParam = this.getSwitchParam();
|
||||
Boolean other$switchParam = other.getSwitchParam();
|
||||
if (this$switchParam == null ? other$switchParam != null : !((Object)this$switchParam).equals(other$switchParam)) {
|
||||
return false;
|
||||
}
|
||||
Integer this$sizeParam = this.getSizeParam();
|
||||
Integer other$sizeParam = other.getSizeParam();
|
||||
if (this$sizeParam == null ? other$sizeParam != null : !((Object)this$sizeParam).equals(other$sizeParam)) {
|
||||
return false;
|
||||
}
|
||||
Boolean this$shapeParam = this.getShapeParam();
|
||||
Boolean other$shapeParam = other.getShapeParam();
|
||||
if (this$shapeParam == null ? other$shapeParam != null : !((Object)this$shapeParam).equals(other$shapeParam)) {
|
||||
return false;
|
||||
}
|
||||
Boolean this$skinColorParam = this.getSkinColorParam();
|
||||
Boolean other$skinColorParam = other.getSkinColorParam();
|
||||
if (this$skinColorParam == null ? other$skinColorParam != null : !((Object)this$skinColorParam).equals(other$skinColorParam)) {
|
||||
return false;
|
||||
}
|
||||
Boolean this$defectsParam = this.getDefectsParam();
|
||||
Boolean other$defectsParam = other.getDefectsParam();
|
||||
if (this$defectsParam == null ? other$defectsParam != null : !((Object)this$defectsParam).equals(other$defectsParam)) {
|
||||
return false;
|
||||
}
|
||||
Boolean this$backgroundParam = this.getBackgroundParam();
|
||||
Boolean other$backgroundParam = other.getBackgroundParam();
|
||||
if (this$backgroundParam == null ? other$backgroundParam != null : !((Object)this$backgroundParam).equals(other$backgroundParam)) {
|
||||
return false;
|
||||
}
|
||||
Integer this$backgroundObject = this.getBackgroundObject();
|
||||
Integer other$backgroundObject = other.getBackgroundObject();
|
||||
if (this$backgroundObject == null ? other$backgroundObject != null : !((Object)this$backgroundObject).equals(other$backgroundObject)) {
|
||||
return false;
|
||||
}
|
||||
String this$createUserId = this.getCreateUserId();
|
||||
String other$createUserId = other.getCreateUserId();
|
||||
if (this$createUserId == null ? other$createUserId != null : !this$createUserId.equals(other$createUserId)) {
|
||||
return false;
|
||||
}
|
||||
Long this$createTime = this.getCreateTime();
|
||||
Long other$createTime = other.getCreateTime();
|
||||
if (this$createTime == null ? other$createTime != null : !((Object)this$createTime).equals(other$createTime)) {
|
||||
return false;
|
||||
}
|
||||
String this$lastUpdateUserId = this.getLastUpdateUserId();
|
||||
String other$lastUpdateUserId = other.getLastUpdateUserId();
|
||||
if (this$lastUpdateUserId == null ? other$lastUpdateUserId != null : !this$lastUpdateUserId.equals(other$lastUpdateUserId)) {
|
||||
return false;
|
||||
}
|
||||
Long this$lastUpdateTime = this.getLastUpdateTime();
|
||||
Long other$lastUpdateTime = other.getLastUpdateTime();
|
||||
return !(this$lastUpdateTime == null ? other$lastUpdateTime != null : !((Object)this$lastUpdateTime).equals(other$lastUpdateTime));
|
||||
}
|
||||
|
||||
protected boolean canEqual(Object other) {
|
||||
return other instanceof PersonPropertiesSwitch;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
int PRIME = 59;
|
||||
int result = 1;
|
||||
String $id = this.getId();
|
||||
result = result * 59 + ($id == null ? 43 : $id.hashCode());
|
||||
String $businessId = this.getBusinessId();
|
||||
result = result * 59 + ($businessId == null ? 43 : $businessId.hashCode());
|
||||
Short $status = this.getStatus();
|
||||
result = result * 59 + ($status == null ? 43 : ((Object)$status).hashCode());
|
||||
Boolean $switchParam = this.getSwitchParam();
|
||||
result = result * 59 + ($switchParam == null ? 43 : ((Object)$switchParam).hashCode());
|
||||
Integer $sizeParam = this.getSizeParam();
|
||||
result = result * 59 + ($sizeParam == null ? 43 : ((Object)$sizeParam).hashCode());
|
||||
Boolean $shapeParam = this.getShapeParam();
|
||||
result = result * 59 + ($shapeParam == null ? 43 : ((Object)$shapeParam).hashCode());
|
||||
Boolean $skinColorParam = this.getSkinColorParam();
|
||||
result = result * 59 + ($skinColorParam == null ? 43 : ((Object)$skinColorParam).hashCode());
|
||||
Boolean $defectsParam = this.getDefectsParam();
|
||||
result = result * 59 + ($defectsParam == null ? 43 : ((Object)$defectsParam).hashCode());
|
||||
Boolean $backgroundParam = this.getBackgroundParam();
|
||||
result = result * 59 + ($backgroundParam == null ? 43 : ((Object)$backgroundParam).hashCode());
|
||||
Integer $backgroundObject = this.getBackgroundObject();
|
||||
result = result * 59 + ($backgroundObject == null ? 43 : ((Object)$backgroundObject).hashCode());
|
||||
String $createUserId = this.getCreateUserId();
|
||||
result = result * 59 + ($createUserId == null ? 43 : $createUserId.hashCode());
|
||||
Long $createTime = this.getCreateTime();
|
||||
result = result * 59 + ($createTime == null ? 43 : ((Object)$createTime).hashCode());
|
||||
String $lastUpdateUserId = this.getLastUpdateUserId();
|
||||
result = result * 59 + ($lastUpdateUserId == null ? 43 : $lastUpdateUserId.hashCode());
|
||||
Long $lastUpdateTime = this.getLastUpdateTime();
|
||||
result = result * 59 + ($lastUpdateTime == null ? 43 : ((Object)$lastUpdateTime).hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "PersonPropertiesSwitch(id=" + this.getId() + ", businessId=" + this.getBusinessId() + ", status=" + this.getStatus() + ", switchParam=" + this.getSwitchParam() + ", sizeParam=" + this.getSizeParam() + ", shapeParam=" + this.getShapeParam() + ", skinColorParam=" + this.getSkinColorParam() + ", defectsParam=" + this.getDefectsParam() + ", backgroundParam=" + this.getBackgroundParam() + ", backgroundObject=" + this.getBackgroundObject() + ", createUserId=" + this.getCreateUserId() + ", createTime=" + this.getCreateTime() + ", lastUpdateUserId=" + this.getLastUpdateUserId() + ", lastUpdateTime=" + this.getLastUpdateTime() + ")";
|
||||
}
|
||||
}
|
||||
|
||||
-116
@@ -1,116 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class PersonRegistry {
|
||||
private String id;
|
||||
private String businessId;
|
||||
private Integer status;
|
||||
private Integer deviceStatus;
|
||||
private Integer codeStatus;
|
||||
private String organizationIds;
|
||||
private String labelIds;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
private Integer type;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getDeviceStatus() {
|
||||
return this.deviceStatus;
|
||||
}
|
||||
|
||||
public void setDeviceStatus(Integer deviceStatus) {
|
||||
this.deviceStatus = deviceStatus;
|
||||
}
|
||||
|
||||
public Integer getCodeStatus() {
|
||||
return this.codeStatus;
|
||||
}
|
||||
|
||||
public void setCodeStatus(Integer codeStatus) {
|
||||
this.codeStatus = codeStatus;
|
||||
}
|
||||
|
||||
public String getOrganizationIds() {
|
||||
return this.organizationIds;
|
||||
}
|
||||
|
||||
public void setOrganizationIds(String organizationIds) {
|
||||
this.organizationIds = organizationIds;
|
||||
}
|
||||
|
||||
public String getLabelIds() {
|
||||
return this.labelIds;
|
||||
}
|
||||
|
||||
public void setLabelIds(String labelIds) {
|
||||
this.labelIds = labelIds;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
-35
@@ -1,35 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class PersonRegistryDevice {
|
||||
private String id;
|
||||
private String registryId;
|
||||
private String deviceCode;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getRegistryId() {
|
||||
return this.registryId;
|
||||
}
|
||||
|
||||
public void setRegistryId(String registryId) {
|
||||
this.registryId = registryId;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return this.deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
}
|
||||
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class PersonRegistryProperties {
|
||||
private String id;
|
||||
private String registryId;
|
||||
private String personPropertyId;
|
||||
private String bindPropertyCode;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getRegistryId() {
|
||||
return this.registryId;
|
||||
}
|
||||
|
||||
public void setRegistryId(String registryId) {
|
||||
this.registryId = registryId;
|
||||
}
|
||||
|
||||
public String getPersonPropertyId() {
|
||||
return this.personPropertyId;
|
||||
}
|
||||
|
||||
public void setPersonPropertyId(String personPropertyId) {
|
||||
this.personPropertyId = personPropertyId;
|
||||
}
|
||||
|
||||
public String getBindPropertyCode() {
|
||||
return this.bindPropertyCode;
|
||||
}
|
||||
|
||||
public void setBindPropertyCode(String bindPropertyCode) {
|
||||
this.bindPropertyCode = bindPropertyCode;
|
||||
}
|
||||
}
|
||||
|
||||
-67
@@ -1,67 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
public class PersonZoneRef {
|
||||
private String id;
|
||||
private String personId;
|
||||
private String zoneId;
|
||||
private Long createTime;
|
||||
private String createUserId;
|
||||
private Long lastUpdateTime;
|
||||
private String lastUpdateUserId;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getPersonId() {
|
||||
return this.personId;
|
||||
}
|
||||
|
||||
public void setPersonId(String personId) {
|
||||
this.personId = personId == null ? null : personId.trim();
|
||||
}
|
||||
|
||||
public String getZoneId() {
|
||||
return this.zoneId;
|
||||
}
|
||||
|
||||
public void setZoneId(String zoneId) {
|
||||
this.zoneId = zoneId == null ? null : zoneId.trim();
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId == null ? null : createUserId.trim();
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId == null ? null : lastUpdateUserId.trim();
|
||||
}
|
||||
}
|
||||
|
||||
-656
@@ -1,656 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class PersonZoneRefExample {
|
||||
protected String orderByClause;
|
||||
protected boolean distinct;
|
||||
protected List<Criteria> oredCriteria = new ArrayList<Criteria>();
|
||||
|
||||
public void setOrderByClause(String orderByClause) {
|
||||
this.orderByClause = orderByClause;
|
||||
}
|
||||
|
||||
public String getOrderByClause() {
|
||||
return this.orderByClause;
|
||||
}
|
||||
|
||||
public void setDistinct(boolean distinct) {
|
||||
this.distinct = distinct;
|
||||
}
|
||||
|
||||
public boolean isDistinct() {
|
||||
return this.distinct;
|
||||
}
|
||||
|
||||
public List<Criteria> getOredCriteria() {
|
||||
return this.oredCriteria;
|
||||
}
|
||||
|
||||
public void or(Criteria criteria) {
|
||||
this.oredCriteria.add(criteria);
|
||||
}
|
||||
|
||||
public Criteria or() {
|
||||
Criteria criteria = this.createCriteriaInternal();
|
||||
this.oredCriteria.add(criteria);
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public Criteria createCriteria() {
|
||||
Criteria criteria = this.createCriteriaInternal();
|
||||
if (this.oredCriteria.size() == 0) {
|
||||
this.oredCriteria.add(criteria);
|
||||
}
|
||||
return criteria;
|
||||
}
|
||||
|
||||
protected Criteria createCriteriaInternal() {
|
||||
Criteria criteria = new Criteria();
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public void clear() {
|
||||
this.oredCriteria.clear();
|
||||
this.orderByClause = null;
|
||||
this.distinct = false;
|
||||
}
|
||||
|
||||
public static class Criterion {
|
||||
private String condition;
|
||||
private Object value;
|
||||
private Object secondValue;
|
||||
private boolean noValue;
|
||||
private boolean singleValue;
|
||||
private boolean betweenValue;
|
||||
private boolean listValue;
|
||||
private String typeHandler;
|
||||
|
||||
public String getCondition() {
|
||||
return this.condition;
|
||||
}
|
||||
|
||||
public Object getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public Object getSecondValue() {
|
||||
return this.secondValue;
|
||||
}
|
||||
|
||||
public boolean isNoValue() {
|
||||
return this.noValue;
|
||||
}
|
||||
|
||||
public boolean isSingleValue() {
|
||||
return this.singleValue;
|
||||
}
|
||||
|
||||
public boolean isBetweenValue() {
|
||||
return this.betweenValue;
|
||||
}
|
||||
|
||||
public boolean isListValue() {
|
||||
return this.listValue;
|
||||
}
|
||||
|
||||
public String getTypeHandler() {
|
||||
return this.typeHandler;
|
||||
}
|
||||
|
||||
protected Criterion(String condition) {
|
||||
this.condition = condition;
|
||||
this.typeHandler = null;
|
||||
this.noValue = true;
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, String typeHandler) {
|
||||
this.condition = condition;
|
||||
this.value = value;
|
||||
this.typeHandler = typeHandler;
|
||||
if (value instanceof List) {
|
||||
this.listValue = true;
|
||||
} else {
|
||||
this.singleValue = true;
|
||||
}
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value) {
|
||||
this(condition, value, null);
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
|
||||
this.condition = condition;
|
||||
this.value = value;
|
||||
this.secondValue = secondValue;
|
||||
this.typeHandler = typeHandler;
|
||||
this.betweenValue = true;
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, Object secondValue) {
|
||||
this(condition, value, secondValue, null);
|
||||
}
|
||||
}
|
||||
|
||||
public static class Criteria
|
||||
extends GeneratedCriteria {
|
||||
protected Criteria() {
|
||||
}
|
||||
}
|
||||
|
||||
protected static abstract class GeneratedCriteria {
|
||||
protected List<Criterion> criteria = new ArrayList<Criterion>();
|
||||
|
||||
protected GeneratedCriteria() {
|
||||
}
|
||||
|
||||
public boolean isValid() {
|
||||
return this.criteria.size() > 0;
|
||||
}
|
||||
|
||||
public List<Criterion> getAllCriteria() {
|
||||
return this.criteria;
|
||||
}
|
||||
|
||||
public List<Criterion> getCriteria() {
|
||||
return this.criteria;
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition) {
|
||||
if (condition == null) {
|
||||
throw new RuntimeException("Value for condition cannot be null");
|
||||
}
|
||||
this.criteria.add(new Criterion(condition));
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition, Object value, String property) {
|
||||
if (value == null) {
|
||||
throw new RuntimeException("Value for " + property + " cannot be null");
|
||||
}
|
||||
this.criteria.add(new Criterion(condition, value));
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition, Object value1, Object value2, String property) {
|
||||
if (value1 == null || value2 == null) {
|
||||
throw new RuntimeException("Between values for " + property + " cannot be null");
|
||||
}
|
||||
this.criteria.add(new Criterion(condition, value1, value2));
|
||||
}
|
||||
|
||||
public Criteria andIdIsNull() {
|
||||
this.addCriterion("ID is null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdIsNotNull() {
|
||||
this.addCriterion("ID is not null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdEqualTo(String value) {
|
||||
this.addCriterion("ID =", value, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotEqualTo(String value) {
|
||||
this.addCriterion("ID <>", value, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdGreaterThan(String value) {
|
||||
this.addCriterion("ID >", value, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdGreaterThanOrEqualTo(String value) {
|
||||
this.addCriterion("ID >=", value, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdLessThan(String value) {
|
||||
this.addCriterion("ID <", value, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdLessThanOrEqualTo(String value) {
|
||||
this.addCriterion("ID <=", value, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdLike(String value) {
|
||||
this.addCriterion("ID like", value, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotLike(String value) {
|
||||
this.addCriterion("ID not like", value, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdIn(List<String> values) {
|
||||
this.addCriterion("ID in", values, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotIn(List<String> values) {
|
||||
this.addCriterion("ID not in", values, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdBetween(String value1, String value2) {
|
||||
this.addCriterion("ID between", value1, value2, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotBetween(String value1, String value2) {
|
||||
this.addCriterion("ID not between", value1, value2, "id");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdIsNull() {
|
||||
this.addCriterion("PERSON_ID is null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdIsNotNull() {
|
||||
this.addCriterion("PERSON_ID is not null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdEqualTo(String value) {
|
||||
this.addCriterion("PERSON_ID =", value, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdNotEqualTo(String value) {
|
||||
this.addCriterion("PERSON_ID <>", value, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdGreaterThan(String value) {
|
||||
this.addCriterion("PERSON_ID >", value, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdGreaterThanOrEqualTo(String value) {
|
||||
this.addCriterion("PERSON_ID >=", value, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdLessThan(String value) {
|
||||
this.addCriterion("PERSON_ID <", value, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdLessThanOrEqualTo(String value) {
|
||||
this.addCriterion("PERSON_ID <=", value, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdLike(String value) {
|
||||
this.addCriterion("PERSON_ID like", value, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdNotLike(String value) {
|
||||
this.addCriterion("PERSON_ID not like", value, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdIn(List<String> values) {
|
||||
this.addCriterion("PERSON_ID in", values, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdNotIn(List<String> values) {
|
||||
this.addCriterion("PERSON_ID not in", values, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdBetween(String value1, String value2) {
|
||||
this.addCriterion("PERSON_ID between", value1, value2, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andPersonIdNotBetween(String value1, String value2) {
|
||||
this.addCriterion("PERSON_ID not between", value1, value2, "personId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdIsNull() {
|
||||
this.addCriterion("ZONE_ID is null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdIsNotNull() {
|
||||
this.addCriterion("ZONE_ID is not null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdEqualTo(String value) {
|
||||
this.addCriterion("ZONE_ID =", value, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdNotEqualTo(String value) {
|
||||
this.addCriterion("ZONE_ID <>", value, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdGreaterThan(String value) {
|
||||
this.addCriterion("ZONE_ID >", value, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdGreaterThanOrEqualTo(String value) {
|
||||
this.addCriterion("ZONE_ID >=", value, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdLessThan(String value) {
|
||||
this.addCriterion("ZONE_ID <", value, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdLessThanOrEqualTo(String value) {
|
||||
this.addCriterion("ZONE_ID <=", value, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdLike(String value) {
|
||||
this.addCriterion("ZONE_ID like", value, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdNotLike(String value) {
|
||||
this.addCriterion("ZONE_ID not like", value, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdIn(List<String> values) {
|
||||
this.addCriterion("ZONE_ID in", values, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdNotIn(List<String> values) {
|
||||
this.addCriterion("ZONE_ID not in", values, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdBetween(String value1, String value2) {
|
||||
this.addCriterion("ZONE_ID between", value1, value2, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andZoneIdNotBetween(String value1, String value2) {
|
||||
this.addCriterion("ZONE_ID not between", value1, value2, "zoneId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeIsNull() {
|
||||
this.addCriterion("CREATE_TIME is null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeIsNotNull() {
|
||||
this.addCriterion("CREATE_TIME is not null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeEqualTo(BigDecimal value) {
|
||||
this.addCriterion("CREATE_TIME =", value, "createTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeNotEqualTo(BigDecimal value) {
|
||||
this.addCriterion("CREATE_TIME <>", value, "createTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeGreaterThan(BigDecimal value) {
|
||||
this.addCriterion("CREATE_TIME >", value, "createTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeGreaterThanOrEqualTo(BigDecimal value) {
|
||||
this.addCriterion("CREATE_TIME >=", value, "createTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeLessThan(BigDecimal value) {
|
||||
this.addCriterion("CREATE_TIME <", value, "createTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeLessThanOrEqualTo(BigDecimal value) {
|
||||
this.addCriterion("CREATE_TIME <=", value, "createTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeIn(List<BigDecimal> values) {
|
||||
this.addCriterion("CREATE_TIME in", values, "createTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeNotIn(List<BigDecimal> values) {
|
||||
this.addCriterion("CREATE_TIME not in", values, "createTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeBetween(BigDecimal value1, BigDecimal value2) {
|
||||
this.addCriterion("CREATE_TIME between", value1, value2, "createTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateTimeNotBetween(BigDecimal value1, BigDecimal value2) {
|
||||
this.addCriterion("CREATE_TIME not between", value1, value2, "createTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdIsNull() {
|
||||
this.addCriterion("CREATE_USER_ID is null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdIsNotNull() {
|
||||
this.addCriterion("CREATE_USER_ID is not null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdEqualTo(String value) {
|
||||
this.addCriterion("CREATE_USER_ID =", value, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdNotEqualTo(String value) {
|
||||
this.addCriterion("CREATE_USER_ID <>", value, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdGreaterThan(String value) {
|
||||
this.addCriterion("CREATE_USER_ID >", value, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdGreaterThanOrEqualTo(String value) {
|
||||
this.addCriterion("CREATE_USER_ID >=", value, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdLessThan(String value) {
|
||||
this.addCriterion("CREATE_USER_ID <", value, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdLessThanOrEqualTo(String value) {
|
||||
this.addCriterion("CREATE_USER_ID <=", value, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdLike(String value) {
|
||||
this.addCriterion("CREATE_USER_ID like", value, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdNotLike(String value) {
|
||||
this.addCriterion("CREATE_USER_ID not like", value, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdIn(List<String> values) {
|
||||
this.addCriterion("CREATE_USER_ID in", values, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdNotIn(List<String> values) {
|
||||
this.addCriterion("CREATE_USER_ID not in", values, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdBetween(String value1, String value2) {
|
||||
this.addCriterion("CREATE_USER_ID between", value1, value2, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andCreateUserIdNotBetween(String value1, String value2) {
|
||||
this.addCriterion("CREATE_USER_ID not between", value1, value2, "createUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeIsNull() {
|
||||
this.addCriterion("LAST_UPDATE_TIME is null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeIsNotNull() {
|
||||
this.addCriterion("LAST_UPDATE_TIME is not null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeEqualTo(BigDecimal value) {
|
||||
this.addCriterion("LAST_UPDATE_TIME =", value, "lastUpdateTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeNotEqualTo(BigDecimal value) {
|
||||
this.addCriterion("LAST_UPDATE_TIME <>", value, "lastUpdateTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeGreaterThan(BigDecimal value) {
|
||||
this.addCriterion("LAST_UPDATE_TIME >", value, "lastUpdateTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeGreaterThanOrEqualTo(BigDecimal value) {
|
||||
this.addCriterion("LAST_UPDATE_TIME >=", value, "lastUpdateTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeLessThan(BigDecimal value) {
|
||||
this.addCriterion("LAST_UPDATE_TIME <", value, "lastUpdateTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeLessThanOrEqualTo(BigDecimal value) {
|
||||
this.addCriterion("LAST_UPDATE_TIME <=", value, "lastUpdateTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeIn(List<BigDecimal> values) {
|
||||
this.addCriterion("LAST_UPDATE_TIME in", values, "lastUpdateTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeNotIn(List<BigDecimal> values) {
|
||||
this.addCriterion("LAST_UPDATE_TIME not in", values, "lastUpdateTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeBetween(BigDecimal value1, BigDecimal value2) {
|
||||
this.addCriterion("LAST_UPDATE_TIME between", value1, value2, "lastUpdateTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateTimeNotBetween(BigDecimal value1, BigDecimal value2) {
|
||||
this.addCriterion("LAST_UPDATE_TIME not between", value1, value2, "lastUpdateTime");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdIsNull() {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID is null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdIsNotNull() {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID is not null");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdEqualTo(String value) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID =", value, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdNotEqualTo(String value) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID <>", value, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdGreaterThan(String value) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID >", value, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdGreaterThanOrEqualTo(String value) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID >=", value, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdLessThan(String value) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID <", value, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdLessThanOrEqualTo(String value) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID <=", value, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdLike(String value) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID like", value, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdNotLike(String value) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID not like", value, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdIn(List<String> values) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID in", values, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdNotIn(List<String> values) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID not in", values, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdBetween(String value1, String value2) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID between", value1, value2, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
|
||||
public Criteria andLastUpdateUserIdNotBetween(String value1, String value2) {
|
||||
this.addCriterion("LAST_UPDATE_USER_ID not between", value1, value2, "lastUpdateUserId");
|
||||
return (Criteria)this;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
-132
@@ -1,132 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* cn.cloudwalk.cloud.entity.CloudwalkBaseTimes
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.entity;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
public class SysLog
|
||||
extends CloudwalkBaseTimes {
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String orgId;
|
||||
private String orgName;
|
||||
private String loginName;
|
||||
private String contactPerson;
|
||||
private String ip;
|
||||
private Integer logType;
|
||||
private String module;
|
||||
private Integer status;
|
||||
private String remark;
|
||||
private Long startTime;
|
||||
private Long endTime;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode == null ? null : serviceCode.trim();
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId == null ? null : businessId.trim();
|
||||
}
|
||||
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId == null ? null : orgId.trim();
|
||||
}
|
||||
|
||||
public String getOrgName() {
|
||||
return this.orgName;
|
||||
}
|
||||
|
||||
public void setOrgName(String orgName) {
|
||||
this.orgName = orgName == null ? null : orgName.trim();
|
||||
}
|
||||
|
||||
public String getLoginName() {
|
||||
return this.loginName;
|
||||
}
|
||||
|
||||
public void setLoginName(String loginName) {
|
||||
this.loginName = loginName;
|
||||
}
|
||||
|
||||
public String getContactPerson() {
|
||||
return this.contactPerson;
|
||||
}
|
||||
|
||||
public void setContactPerson(String contactPerson) {
|
||||
this.contactPerson = contactPerson;
|
||||
}
|
||||
|
||||
public String getIp() {
|
||||
return this.ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip == null ? null : ip.trim();
|
||||
}
|
||||
|
||||
public Integer getLogType() {
|
||||
return this.logType;
|
||||
}
|
||||
|
||||
public void setLogType(Integer logType) {
|
||||
this.logType = logType;
|
||||
}
|
||||
|
||||
public String getModule() {
|
||||
return this.module;
|
||||
}
|
||||
|
||||
public void setModule(String module) {
|
||||
this.module = module;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
public Long getStartTime() {
|
||||
return this.startTime;
|
||||
}
|
||||
|
||||
public void setStartTime(Long startTime) {
|
||||
this.startTime = startTime;
|
||||
}
|
||||
|
||||
public Long getEndTime() {
|
||||
return this.endTime;
|
||||
}
|
||||
|
||||
public void setEndTime(Long endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
}
|
||||
|
||||
-26
@@ -1,26 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.entity.DeviceImageStore;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface DeviceImageStoreMapper {
|
||||
public List<DeviceImageStore> select(DeviceImageStore var1);
|
||||
|
||||
public int insert(DeviceImageStore var1);
|
||||
|
||||
public int insertSelective(DeviceImageStore var1);
|
||||
|
||||
public int update(DeviceImageStore var1);
|
||||
|
||||
public List<DeviceImageStore> findNotifyList(DeviceImageStore var1);
|
||||
|
||||
public List<String> findImageStoreIds(@Param(value="deviceId") String var1, @Param(value="type") Short var2);
|
||||
}
|
||||
|
||||
-22
@@ -1,22 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.entity.DevicePerson;
|
||||
import java.util.List;
|
||||
|
||||
public interface DevicePersonMapper {
|
||||
public DevicePerson selectByPrimaryKey(String var1);
|
||||
|
||||
public List<DevicePerson> query(DevicePerson var1);
|
||||
|
||||
public int insert(DevicePerson var1);
|
||||
|
||||
public int insertSelective(DevicePerson var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(DevicePerson var1);
|
||||
|
||||
public int updateSelective(DevicePerson var1);
|
||||
}
|
||||
|
||||
-74
@@ -1,74 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.DevicePersonSyncLogDTO;
|
||||
import cn.cloudwalk.data.organization.dto.DevicePersonSyncLogQueryDTO;
|
||||
import cn.cloudwalk.data.organization.entity.DevicePersonSyncLog;
|
||||
import cn.cloudwalk.data.organization.vo.DevicePersonSyncLogVO;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface DevicePersonSyncLogMapper {
|
||||
public DevicePersonSyncLog selectByPrimaryKey(DevicePersonSyncLog var1);
|
||||
|
||||
public List<DevicePersonSyncLog> query(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public List<DevicePersonSyncLog> queryException(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public int insert(DevicePersonSyncLog var1);
|
||||
|
||||
public int insertSelective(DevicePersonSyncLog var1);
|
||||
|
||||
public int updateSelective(DevicePersonSyncLog var1);
|
||||
|
||||
public int delete(DevicePersonSyncLog var1);
|
||||
|
||||
public int logicDelete(DevicePersonSyncLog var1);
|
||||
|
||||
public int updateIsDel(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public int deleteByTime(Long var1);
|
||||
|
||||
public List<DevicePersonSyncLogVO> imageStoreSyncCount(@Param(value="deviceId") String var1, @Param(value="imageStoreIds") List<String> var2, @Param(value="statusList") List<Integer> var3);
|
||||
|
||||
public List<DevicePersonSyncLogVO> deviceSyncCount(@Param(value="deviceIds") List<String> var1, @Param(value="statusList") List<Integer> var2);
|
||||
|
||||
public List<DevicePersonSyncLogVO> syncLogList(DevicePersonSyncLogQueryDTO var1);
|
||||
|
||||
public int resetSyncLog(DevicePersonSyncLog var1);
|
||||
|
||||
public int resetSyncLogByIds(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public int updateCountIncrement(DevicePersonSyncLog var1);
|
||||
|
||||
public int updateCountDecrement(DevicePersonSyncLog var1);
|
||||
|
||||
public int updateStatusAndCountInc(DevicePersonSyncLog var1);
|
||||
|
||||
public int updateStatusAndCountDec(DevicePersonSyncLog var1);
|
||||
|
||||
public int updateStatusAndCount(DevicePersonSyncLog var1);
|
||||
|
||||
public int updateStatusByGroupPersonRef(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public int updateStatusByCondition(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public List<DevicePersonSyncLogVO> personGroupRelations(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public List<DevicePersonSyncLog> queryOtherGroups(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public int updateLastTimeOfGroupPerson(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public int updateLastTimeByGroupPersonRef(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public List<String> findPersonIds(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public int updateByGroupRefIds(@Param(value="record") DevicePersonSyncLog var1, @Param(value="ids") Set<String> var2);
|
||||
}
|
||||
|
||||
-93
@@ -1,93 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.DelGroupPersonDTO;
|
||||
import cn.cloudwalk.data.organization.dto.DevicePersonSyncLogDTO;
|
||||
import cn.cloudwalk.data.organization.dto.GroupPersonPageParamDTO;
|
||||
import cn.cloudwalk.data.organization.dto.GroupPersonPageResultDTO;
|
||||
import cn.cloudwalk.data.organization.dto.GroupPersonRefDTO;
|
||||
import cn.cloudwalk.data.organization.dto.ImageStoreCountDTO;
|
||||
import cn.cloudwalk.data.organization.dto.QueryGroupPersonDTO;
|
||||
import cn.cloudwalk.data.organization.entity.GroupPersonRef;
|
||||
import cn.cloudwalk.data.organization.vo.DevicePersonSyncLogVO;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface GroupPersonRefMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(GroupPersonRef var1);
|
||||
|
||||
public int insertSelective(GroupPersonRef var1);
|
||||
|
||||
public GroupPersonRef selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(GroupPersonRef var1);
|
||||
|
||||
public int updateByPrimaryKey(GroupPersonRef var1);
|
||||
|
||||
public List<String> page(QueryGroupPersonDTO var1);
|
||||
|
||||
public List<ImageStoreCountDTO> getCountByImageStoreIds(List<String> var1);
|
||||
|
||||
public int deleteByImageStoreId(String var1);
|
||||
|
||||
public int batchInsert(List<GroupPersonRef> var1);
|
||||
|
||||
public List<GroupPersonRef> query(QueryGroupPersonDTO var1);
|
||||
|
||||
public int logicDeleteByParam(DelGroupPersonDTO var1);
|
||||
|
||||
public int logicDeleteExpireNullByParam(DelGroupPersonDTO var1);
|
||||
|
||||
public List<GroupPersonPageResultDTO> personPage(GroupPersonPageParamDTO var1);
|
||||
|
||||
public List<GroupPersonPageResultDTO> personPageByIsElevatorOne(GroupPersonPageParamDTO var1);
|
||||
|
||||
public List<GroupPersonPageResultDTO> personPageByIsElevatorTwo(GroupPersonPageParamDTO var1);
|
||||
|
||||
public int updateLastUpdateTimeByPersonIds(@Param(value="imageStoreId") String var1, @Param(value="personIds") List<String> var2, @Param(value="lastUpdateTime") Long var3);
|
||||
|
||||
public List<String> selectUpdateImageStoreId(Long var1);
|
||||
|
||||
public int updateImageData(@Param(value="record") GroupPersonRef var1, @Param(value="personIds") List<String> var2);
|
||||
|
||||
public List<GroupPersonRef> selectByCondition(@Param(value="record") GroupPersonRef var1, @Param(value="personIds") List<String> var2);
|
||||
|
||||
public int updateImageDataByIds(@Param(value="record") GroupPersonRef var1, @Param(value="ids") List<String> var2);
|
||||
|
||||
public int updateStatusByIds(@Param(value="record") GroupPersonRef var1, @Param(value="ids") Set<String> var2);
|
||||
|
||||
public int imageStoreCount(@Param(value="imageStoreIds") List<String> var1, @Param(value="statusList") List<Integer> var2);
|
||||
|
||||
public int updateLastTime(@Param(value="ids") List<String> var1, @Param(value="lastUpdateTime") Long var2);
|
||||
|
||||
public int updateErrorMessage(@Param(value="imageStoreId") String var1, @Param(value="imageIds") List<String> var2, @Param(value="errorMessage") String var3);
|
||||
|
||||
public List<DevicePersonSyncLogVO> personGroupRelations(DevicePersonSyncLogDTO var1);
|
||||
|
||||
public List<DevicePersonSyncLogVO> personGroups(@Param(value="personIds") List<String> var1);
|
||||
|
||||
public List<GroupPersonRefDTO> queryGroupPerson(QueryGroupPersonDTO var1);
|
||||
|
||||
public List<GroupPersonRefDTO> queryGroupPersonList(QueryGroupPersonDTO var1);
|
||||
|
||||
public List<GroupPersonRefDTO> waitSyncList(Long var1);
|
||||
|
||||
public List<GroupPersonRef> queryByExpiryDateStatus(QueryGroupPersonDTO var1);
|
||||
|
||||
public List<GroupPersonRefDTO> queryHandleFaceException(@Param(value="isDel") Short var1, @Param(value="groupStatusList") List<Short> var2);
|
||||
|
||||
public int deleteByTime(Long var1);
|
||||
|
||||
public List<GroupPersonRef> findOtherGroups(GroupPersonRef var1);
|
||||
|
||||
public List<String> personImageId(String var1);
|
||||
}
|
||||
|
||||
-22
@@ -1,22 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.entity.BatchDetail;
|
||||
import java.util.List;
|
||||
|
||||
public interface ImgPersonBatchDetailMapper {
|
||||
public BatchDetail selectById(String var1);
|
||||
|
||||
public int deleteById(String var1);
|
||||
|
||||
public int insert(BatchDetail var1);
|
||||
|
||||
public int updateById(BatchDetail var1);
|
||||
|
||||
public List<BatchDetail> page(BatchDetail var1);
|
||||
|
||||
public int insertBatch(List<BatchDetail> var1);
|
||||
}
|
||||
|
||||
-78
@@ -1,78 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
* org.apache.ibatis.annotations.UpdateProvider
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.AddUnitAreaDTO;
|
||||
import cn.cloudwalk.data.organization.dto.DelPersonOrgDTO;
|
||||
import cn.cloudwalk.data.organization.dto.GetsAreaDTO;
|
||||
import cn.cloudwalk.data.organization.dto.GetsOrganizationDTO;
|
||||
import cn.cloudwalk.data.organization.dto.OrgTreeDTO;
|
||||
import cn.cloudwalk.data.organization.dto.UnitCountDTO;
|
||||
import cn.cloudwalk.data.organization.entity.Area;
|
||||
import cn.cloudwalk.data.organization.entity.ImgStoreUnitArea;
|
||||
import cn.cloudwalk.data.organization.entity.Organization;
|
||||
import cn.cloudwalk.data.organization.mapper.provider.ImgStoreOrganizationProvider;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.apache.ibatis.annotations.UpdateProvider;
|
||||
|
||||
public interface ImgStoreAreaMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(Organization var1);
|
||||
|
||||
public int insertSelective(Area var1);
|
||||
|
||||
public Area selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(Area var1);
|
||||
|
||||
public int updateByPrimaryKey(Organization var1);
|
||||
|
||||
public List<Organization> getOrgByNameAndParent(@Param(value="name") String var1, @Param(value="parentId") String var2, @Param(value="businessId") String var3);
|
||||
|
||||
public int batchDel(@Param(value="ids") List<String> var1, @Param(value="lastUpdateTime") long var2, @Param(value="userId") String var4, @Param(value="businessId") String var5);
|
||||
|
||||
public List<Area> getAllArea(String var1);
|
||||
|
||||
public List<Area> getNextArea(@Param(value="parentId") String var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<UnitCountDTO> getUnitCount(List<String> var1);
|
||||
|
||||
public int delPerson(DelPersonOrgDTO var1);
|
||||
|
||||
public List<String> getUnitIdInRef(AddUnitAreaDTO var1);
|
||||
|
||||
public int batchInsert(List<ImgStoreUnitArea> var1);
|
||||
|
||||
public List<Area> getAreaByIds(@Param(value="areaIds") List<String> var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<Area> gets(GetsAreaDTO var1);
|
||||
|
||||
public Integer countByTypeId(GetsOrganizationDTO var1);
|
||||
|
||||
public List<String> getParentIdIsNull(List<String> var1);
|
||||
|
||||
public List<Area> getParentNode(String var1);
|
||||
|
||||
@UpdateProvider(type=ImgStoreOrganizationProvider.class, method="removePropertyByTypeIdAndCode")
|
||||
public int removePropertyByTypeIdAndCode(@Param(value="typeId") String var1, @Param(value="codeProperty") String var2);
|
||||
|
||||
public List<Area> getAreaByParentIds(@Param(value="parentIds") List<String> var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<String> getOrgIdsByOrgName(@Param(value="orgNames") List<String> var1);
|
||||
|
||||
public List<OrgTreeDTO> selectAllType(@Param(value="businessId") String var1);
|
||||
|
||||
public List<Organization> listByTypeIdAndBusinessId(@Param(value="typeId") String var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<Organization> listByTypeIdsAndBusinessId(@Param(value="typeIds") List<String> var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<Organization> findByBusinessIdAndExcludeTypeId(@Param(value="businessId") String var1, @Param(value="excludeTypeId") String var2);
|
||||
}
|
||||
|
||||
-27
@@ -1,27 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.AreaTypeQueryDTO;
|
||||
import cn.cloudwalk.data.organization.entity.AreaType;
|
||||
import java.util.List;
|
||||
|
||||
public interface ImgStoreAreaTypeMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(AreaType var1);
|
||||
|
||||
public int insertSelective(AreaType var1);
|
||||
|
||||
public AreaType selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(AreaType var1);
|
||||
|
||||
public int updateByPrimaryKey(AreaType var1);
|
||||
|
||||
public List<AreaType> select(AreaTypeQueryDTO var1);
|
||||
|
||||
public List<AreaType> selectByCondition(AreaTypeQueryDTO var1);
|
||||
}
|
||||
|
||||
-26
@@ -1,26 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.entity.AreaTypeProperties;
|
||||
import java.util.List;
|
||||
|
||||
public interface ImgStoreAreaTypePropertiesMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(AreaTypeProperties var1);
|
||||
|
||||
public int insertSelective(AreaTypeProperties var1);
|
||||
|
||||
public AreaTypeProperties selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(AreaTypeProperties var1);
|
||||
|
||||
public int updateByPrimaryKey(AreaTypeProperties var1);
|
||||
|
||||
public int updateByTypeKey(AreaTypeProperties var1);
|
||||
|
||||
public List<AreaTypeProperties> select(AreaTypeProperties var1);
|
||||
}
|
||||
|
||||
-63
@@ -1,63 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.AddPersonLabelDTO;
|
||||
import cn.cloudwalk.data.organization.dto.DelPersonLabelDTO;
|
||||
import cn.cloudwalk.data.organization.dto.GetsLabelDTO;
|
||||
import cn.cloudwalk.data.organization.dto.LabelCountDTO;
|
||||
import cn.cloudwalk.data.organization.dto.PageLabelDTO;
|
||||
import cn.cloudwalk.data.organization.entity.ImgStorePersonLabel;
|
||||
import cn.cloudwalk.data.organization.entity.Label;
|
||||
import cn.cloudwalk.data.organization.vo.PageLabelVO;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface ImgStoreLabelMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(Label var1);
|
||||
|
||||
public int insertSelective(Label var1);
|
||||
|
||||
public Label selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(Label var1);
|
||||
|
||||
public int updateByPrimaryKey(Label var1);
|
||||
|
||||
public Integer countByName(@Param(value="name") String var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<PageLabelVO> page(PageLabelDTO var1);
|
||||
|
||||
public List<LabelCountDTO> getCountByLabels(List<String> var1);
|
||||
|
||||
public List<Label> getAllLabels(GetsLabelDTO var1);
|
||||
|
||||
public List<Label> getLabelByName(@Param(value="name") String var1, @Param(value="businessId") String var2);
|
||||
|
||||
public int deletePerson(DelPersonLabelDTO var1);
|
||||
|
||||
public List<String> getPersonIdInRef(AddPersonLabelDTO var1);
|
||||
|
||||
public List<String> getPeronByLabelId(@Param(value="labelIds") List<String> var1);
|
||||
|
||||
public int batchInsert(List<ImgStorePersonLabel> var1);
|
||||
|
||||
public List<Label> getLabelByIds(@Param(value="labelIds") List<String> var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<Label> gets(GetsLabelDTO var1);
|
||||
|
||||
public Integer countByCode(@Param(value="code") String var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<String> getLabelIdsByLabelName(@Param(value="labelNames") List<String> var1);
|
||||
|
||||
public List<Label> selectByIds(@Param(value="businessId") String var1, @Param(value="ids") List<String> var2);
|
||||
|
||||
public int count(GetsLabelDTO var1);
|
||||
}
|
||||
|
||||
-90
@@ -1,90 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
* org.apache.ibatis.annotations.UpdateProvider
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.AddPersonOrgDTO;
|
||||
import cn.cloudwalk.data.organization.dto.DelPersonOrgDTO;
|
||||
import cn.cloudwalk.data.organization.dto.GetsOrganizationDTO;
|
||||
import cn.cloudwalk.data.organization.dto.ImgStoreOrgBatchUpdateDTO;
|
||||
import cn.cloudwalk.data.organization.dto.OrgCountDTO;
|
||||
import cn.cloudwalk.data.organization.dto.OrgTreeDTO;
|
||||
import cn.cloudwalk.data.organization.entity.ImgStorePersonOrganization;
|
||||
import cn.cloudwalk.data.organization.entity.Organization;
|
||||
import cn.cloudwalk.data.organization.entity.OrganizationDetail;
|
||||
import cn.cloudwalk.data.organization.mapper.provider.ImgStoreOrganizationProvider;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.apache.ibatis.annotations.UpdateProvider;
|
||||
|
||||
public interface ImgStoreOrganizationMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(Organization var1);
|
||||
|
||||
public int insertSelective(Organization var1);
|
||||
|
||||
public Organization selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(Organization var1);
|
||||
|
||||
public int updateByPrimaryKey(Organization var1);
|
||||
|
||||
public int updateBatchByIds(ImgStoreOrgBatchUpdateDTO var1);
|
||||
|
||||
public List<Organization> getOrgByNameAndParent(@Param(value="name") String var1, @Param(value="parentId") String var2, @Param(value="businessId") String var3);
|
||||
|
||||
public int batchDel(@Param(value="ids") List<String> var1, @Param(value="lastUpdateTime") long var2, @Param(value="userId") String var4, @Param(value="businessId") String var5);
|
||||
|
||||
public List<Organization> getAllOrg(String var1);
|
||||
|
||||
public List<Organization> listNames(@Param(value="ids") List<String> var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<Organization> getNextOrg(@Param(value="parentId") String var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<OrgCountDTO> getPersonCount(List<String> var1);
|
||||
|
||||
public int delPerson(DelPersonOrgDTO var1);
|
||||
|
||||
public List<String> getPersonIdInRef(AddPersonOrgDTO var1);
|
||||
|
||||
public List<String> getPersonByOrgId(@Param(value="orgIds") List<String> var1);
|
||||
|
||||
public int batchInsert(List<ImgStorePersonOrganization> var1);
|
||||
|
||||
public List<Organization> getOrgByIds(@Param(value="orgIds") List<String> var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<Organization> gets(GetsOrganizationDTO var1);
|
||||
|
||||
public List<OrganizationDetail> listDetail(GetsOrganizationDTO var1);
|
||||
|
||||
public Integer countByTypeId(GetsOrganizationDTO var1);
|
||||
|
||||
public List<String> getParentIdIsNull(List<String> var1);
|
||||
|
||||
public List<Organization> getParentNode(String var1);
|
||||
|
||||
public List<Organization> getParentNodeByCode(@Param(value="businessId") String var1, @Param(value="code") String var2);
|
||||
|
||||
@UpdateProvider(type=ImgStoreOrganizationProvider.class, method="removePropertyByTypeIdAndCode")
|
||||
public int removePropertyByTypeIdAndCode(@Param(value="typeId") String var1, @Param(value="codeProperty") String var2);
|
||||
|
||||
public List<Organization> getOrgByParentIds(@Param(value="parentIds") List<String> var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<String> getOrgIdsByOrgName(@Param(value="orgNames") List<String> var1);
|
||||
|
||||
public List<OrgTreeDTO> selectAllType(@Param(value="businessId") String var1);
|
||||
|
||||
public List<Organization> listByTypeIdAndBusinessId(@Param(value="typeId") String var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<Organization> listByTypeIdsAndBusinessId(@Param(value="typeIds") List<String> var1, @Param(value="businessId") String var2);
|
||||
|
||||
public List<Organization> findByBusinessIdAndExcludeTypeId(@Param(value="businessId") String var1, @Param(value="excludeTypeId") String var2);
|
||||
|
||||
public int count(GetsOrganizationDTO var1);
|
||||
}
|
||||
|
||||
-27
@@ -1,27 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.OrganizationTypeQueryDto;
|
||||
import cn.cloudwalk.data.organization.entity.OrganizationType;
|
||||
import java.util.List;
|
||||
|
||||
public interface ImgStoreOrganizationTypeMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(OrganizationType var1);
|
||||
|
||||
public int insertSelective(OrganizationType var1);
|
||||
|
||||
public OrganizationType selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(OrganizationType var1);
|
||||
|
||||
public int updateByPrimaryKey(OrganizationType var1);
|
||||
|
||||
public List<OrganizationType> select(OrganizationTypeQueryDto var1);
|
||||
|
||||
public List<OrganizationType> selectByCondition(OrganizationTypeQueryDto var1);
|
||||
}
|
||||
|
||||
-26
@@ -1,26 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.entity.OrganizationTypeProperties;
|
||||
import java.util.List;
|
||||
|
||||
public interface ImgStoreOrganizationTypePropertiesMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(OrganizationTypeProperties var1);
|
||||
|
||||
public int insertSelective(OrganizationTypeProperties var1);
|
||||
|
||||
public OrganizationTypeProperties selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(OrganizationTypeProperties var1);
|
||||
|
||||
public int updateByPrimaryKey(OrganizationTypeProperties var1);
|
||||
|
||||
public int updateByTypeKey(OrganizationTypeProperties var1);
|
||||
|
||||
public List<OrganizationTypeProperties> select(OrganizationTypeProperties var1);
|
||||
}
|
||||
|
||||
-38
@@ -1,38 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.ImgStoreAuditUserQueryDto;
|
||||
import cn.cloudwalk.data.organization.dto.ImgStorePersonAuditQueryDto;
|
||||
import cn.cloudwalk.data.organization.dto.ImgStorePersonUniqueDto;
|
||||
import cn.cloudwalk.data.organization.entity.ImgStorePersonAudit;
|
||||
import cn.cloudwalk.data.organization.entity.ImgStorePersonAuditApply;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface ImgStorePersonAuditMapper {
|
||||
public int insert(ImgStorePersonAudit var1);
|
||||
|
||||
public int update(ImgStorePersonAudit var1);
|
||||
|
||||
public int updateByPrimaryKey(ImgStorePersonAudit var1);
|
||||
|
||||
public int batchUpdate(@Param(value="list") List<ImgStorePersonAuditApply> var1, @Param(value="status") Short var2);
|
||||
|
||||
public ImgStorePersonAudit selectByPrimaryKey(@Param(value="id") String var1, @Param(value="status") Short var2);
|
||||
|
||||
public List<ImgStorePersonAudit> query(ImgStorePersonAuditQueryDto var1);
|
||||
|
||||
public List<ImgStorePersonAudit> queryMore(ImgStorePersonAudit var1);
|
||||
|
||||
public List<ImgStorePersonAudit> queryByIds(@Param(value="list") List<String> var1, @Param(value="status") Short var2);
|
||||
|
||||
public ImgStorePersonAudit findByCondition(ImgStorePersonUniqueDto var1);
|
||||
|
||||
public ImgStorePersonAudit userQuery(ImgStoreAuditUserQueryDto var1);
|
||||
}
|
||||
|
||||
-41
@@ -1,41 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.LabelCriteriesDTO;
|
||||
import cn.cloudwalk.data.organization.entity.ImgStorePersonLabel;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface ImgStorePersonLabelMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(ImgStorePersonLabel var1);
|
||||
|
||||
public int insertSelective(ImgStorePersonLabel var1);
|
||||
|
||||
public ImgStorePersonLabel selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(ImgStorePersonLabel var1);
|
||||
|
||||
public int updateByPrimaryKey(ImgStorePersonLabel var1);
|
||||
|
||||
public List<ImgStorePersonLabel> select(ImgStorePersonLabel var1);
|
||||
|
||||
public int delete(ImgStorePersonLabel var1);
|
||||
|
||||
public int insertBatch(List<ImgStorePersonLabel> var1);
|
||||
|
||||
public Set<String> getPersonIdsByLabelIds(List<String> var1);
|
||||
|
||||
public Set<String> getPersonIdsByLabelAndCriteries(LabelCriteriesDTO var1);
|
||||
|
||||
public List<Map<String, String>> groupByPerson(@Param(value="personIds") List<String> var1);
|
||||
}
|
||||
|
||||
-66
@@ -1,66 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
* org.apache.ibatis.annotations.UpdateProvider
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.ImgStorePersonBatchUpdateDto;
|
||||
import cn.cloudwalk.data.organization.dto.ImgStorePersonDeleteDto;
|
||||
import cn.cloudwalk.data.organization.dto.ImgStorePersonQueryDto;
|
||||
import cn.cloudwalk.data.organization.entity.ImgStorePerson;
|
||||
import cn.cloudwalk.data.organization.entity.PersonAccountCheckResult;
|
||||
import cn.cloudwalk.data.organization.mapper.provider.ImgStorePersonProvider;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.apache.ibatis.annotations.UpdateProvider;
|
||||
|
||||
public interface ImgStorePersonMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(ImgStorePerson var1);
|
||||
|
||||
public int insertSelective(ImgStorePerson var1);
|
||||
|
||||
public ImgStorePerson selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(ImgStorePerson var1);
|
||||
|
||||
public int updateByPrimaryKey(ImgStorePerson var1);
|
||||
|
||||
public List<ImgStorePerson> gets(ImgStorePersonQueryDto var1);
|
||||
|
||||
public List<ImgStorePerson> getsByIsElevator(ImgStorePersonQueryDto var1);
|
||||
|
||||
public int count(ImgStorePersonQueryDto var1);
|
||||
|
||||
public List<ImgStorePerson> query(ImgStorePerson var1);
|
||||
|
||||
public int delete(ImgStorePersonDeleteDto var1);
|
||||
|
||||
public List<ImgStorePerson> getPersonByCode(@Param(value="personCode") String var1, @Param(value="businessId") String var2);
|
||||
|
||||
public int updateBatchByIds(ImgStorePersonBatchUpdateDto var1);
|
||||
|
||||
public int insertBatch(List<ImgStorePerson> var1);
|
||||
|
||||
@UpdateProvider(type=ImgStorePersonProvider.class, method="removePropertyByBusinessIdAndCode")
|
||||
public int removePropertyByBusinessIdAndCode(@Param(value="businessId") String var1, @Param(value="codeProperty") String var2);
|
||||
|
||||
public List<ImgStorePerson> getByUniqueCondition(ImgStorePersonQueryDto var1);
|
||||
|
||||
public List<PersonAccountCheckResult> SyncAccountCheck(ImgStorePersonQueryDto var1);
|
||||
|
||||
public int validatePerson(Long var1);
|
||||
|
||||
public int invalidatePerson(Long var1);
|
||||
|
||||
public int updateSync(ImgStorePerson var1);
|
||||
|
||||
public List<ImgStorePerson> getByImageId(ImgStorePersonQueryDto var1);
|
||||
|
||||
public List<ImgStorePerson> selectExpiryDateByIds(@Param(value="ids") List<String> var1);
|
||||
}
|
||||
|
||||
-43
@@ -1,43 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.OrgCriteriesDTO;
|
||||
import cn.cloudwalk.data.organization.entity.ImgStorePersonOrganization;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface ImgStorePersonOrganizationMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(ImgStorePersonOrganization var1);
|
||||
|
||||
public int insertSelective(ImgStorePersonOrganization var1);
|
||||
|
||||
public ImgStorePersonOrganization selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(ImgStorePersonOrganization var1);
|
||||
|
||||
public int updateByPrimaryKey(ImgStorePersonOrganization var1);
|
||||
|
||||
public List<ImgStorePersonOrganization> select(ImgStorePersonOrganization var1);
|
||||
|
||||
public int delete(ImgStorePersonOrganization var1);
|
||||
|
||||
public int insertBatch(List<ImgStorePersonOrganization> var1);
|
||||
|
||||
public Set<String> getPersonIdsByOrgIds(List<String> var1);
|
||||
|
||||
public Set<String> getPersonIdsByOrgIdsAndCriteries(OrgCriteriesDTO var1);
|
||||
|
||||
public int deleteByOrgIds(List<String> var1);
|
||||
|
||||
public List<Map<String, String>> groupByPerson(@Param(value="personIds") List<String> var1);
|
||||
}
|
||||
|
||||
-32
@@ -1,32 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.entity.ImgStorePersonProperties;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface ImgStorePersonPropertiesMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(ImgStorePersonProperties var1);
|
||||
|
||||
public int insertSelective(ImgStorePersonProperties var1);
|
||||
|
||||
public ImgStorePersonProperties selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(ImgStorePersonProperties var1);
|
||||
|
||||
public int updateByPrimaryKey(ImgStorePersonProperties var1);
|
||||
|
||||
public List<ImgStorePersonProperties> select(ImgStorePersonProperties var1);
|
||||
|
||||
public int delete(ImgStorePersonProperties var1);
|
||||
|
||||
public List<ImgStorePersonProperties> selectByIds(@Param(value="businessId") String var1, @Param(value="ids") List<String> var2);
|
||||
}
|
||||
|
||||
-43
@@ -1,43 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.OrgCriteriesDTO;
|
||||
import cn.cloudwalk.data.organization.entity.ImgStoreUnitArea;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface ImgStoreUnitAreaMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(ImgStoreUnitArea var1);
|
||||
|
||||
public int insertSelective(ImgStoreUnitArea var1);
|
||||
|
||||
public ImgStoreUnitArea selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(ImgStoreUnitArea var1);
|
||||
|
||||
public int updateByPrimaryKey(ImgStoreUnitArea var1);
|
||||
|
||||
public List<ImgStoreUnitArea> select(ImgStoreUnitArea var1);
|
||||
|
||||
public int delete(ImgStoreUnitArea var1);
|
||||
|
||||
public int insertBatch(List<ImgStoreUnitArea> var1);
|
||||
|
||||
public Set<String> getUnitIdsByareaIds(List<String> var1);
|
||||
|
||||
public Set<String> getUnitIdsByareaIdsAndCriteries(OrgCriteriesDTO var1);
|
||||
|
||||
public int deleteByAreaIds(List<String> var1);
|
||||
|
||||
public List<Map<String, String>> groupByPerson(@Param(value="personIds") List<String> var1);
|
||||
}
|
||||
|
||||
-32
@@ -1,32 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.GetsImageStoreAssociatedDTO;
|
||||
import cn.cloudwalk.data.organization.entity.IsImageStoreAssociated;
|
||||
import cn.cloudwalk.data.organization.vo.ImageStoreAssociatedVO;
|
||||
import java.util.List;
|
||||
|
||||
public interface IsImageStoreAssociatedMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(IsImageStoreAssociated var1);
|
||||
|
||||
public int insertSelective(IsImageStoreAssociated var1);
|
||||
|
||||
public IsImageStoreAssociated selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(IsImageStoreAssociated var1);
|
||||
|
||||
public int updateByPrimaryKey(IsImageStoreAssociated var1);
|
||||
|
||||
public List<IsImageStoreAssociated> getNotInImageStoreAssociations(ImageStoreAssociatedVO var1);
|
||||
|
||||
public int batchInsert(List<IsImageStoreAssociated> var1);
|
||||
|
||||
public int deleteAllByImageId(String var1);
|
||||
|
||||
public List<IsImageStoreAssociated> gets(GetsImageStoreAssociatedDTO var1);
|
||||
}
|
||||
|
||||
-17
@@ -1,17 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.entity.OperationLog;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface OperationLogMapper {
|
||||
public int addLog(OperationLog var1);
|
||||
|
||||
public int deleteByDelTime(@Param(value="deleteTime") Long var1);
|
||||
}
|
||||
|
||||
-18
@@ -1,18 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.entity.OrgFloor;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface OrgFloorMapper {
|
||||
public List<OrgFloor> listByOrgIds(@Param(value="orgIds") List<String> var1);
|
||||
|
||||
public List<OrgFloor> listByXhwId(@Param(value="orgId") String var1);
|
||||
}
|
||||
|
||||
-34
@@ -1,34 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.OrganizationAreaRefDTO;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface OrganizationAreaRefMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(OrganizationAreaRefDTO var1);
|
||||
|
||||
public OrganizationAreaRefDTO selectByPrimaryKey(String var1);
|
||||
|
||||
public int updateByPrimaryKeySelective(OrganizationAreaRefDTO var1);
|
||||
|
||||
public int updateByPrimaryKey(OrganizationAreaRefDTO var1);
|
||||
|
||||
public List<OrganizationAreaRefDTO> listByOrgId(@Param(value="organizationId") String var1, @Param(value="businessId") String var2);
|
||||
|
||||
public int insertSelective(OrganizationAreaRefDTO var1);
|
||||
|
||||
public int insertBatch(List<OrganizationAreaRefDTO> var1);
|
||||
|
||||
public int deleteByOrgId(@Param(value="orgId") String var1, @Param(value="refType") Integer var2, @Param(value="businessId") Integer var3);
|
||||
|
||||
public int deleteAllByOrgId(@Param(value="orgId") String var1, @Param(value="businessId") String var2);
|
||||
}
|
||||
|
||||
-28
@@ -1,28 +0,0 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*
|
||||
* Could not load the following classes:
|
||||
* org.apache.ibatis.annotations.Param
|
||||
*/
|
||||
package cn.cloudwalk.data.organization.mapper;
|
||||
|
||||
import cn.cloudwalk.data.organization.dto.OrganizationExtendDetailDTO;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface OrganizationExtendDetailMapper {
|
||||
public int deleteByPrimaryKey(String var1);
|
||||
|
||||
public int insert(OrganizationExtendDetailDTO var1);
|
||||
|
||||
public int insertSelective(OrganizationExtendDetailDTO var1);
|
||||
|
||||
public OrganizationExtendDetailDTO selectByPrimaryKey(String var1);
|
||||
|
||||
public List<OrganizationExtendDetailDTO> selectByOrgId(@Param(value="organizationId") String var1, @Param(value="businessId") String var2);
|
||||
|
||||
public int updateByPrimaryKeySelective(OrganizationExtendDetailDTO var1);
|
||||
|
||||
public int updateByPrimaryKey(OrganizationExtendDetailDTO var1);
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user