mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-10 00:40:30 +08:00
chore(v0.11): 全路径纳入版本库与走查整改
- .gitignore:显式放行全部 maven-*、scripts、dev-support、frontend、反1、artifacts、历史导出目录
- 新增跟踪:device-manager/device-sdk/legacy-public、davinci-manager、cwos-*、cwos-resource 等源码与附属资源
- davinci FileStorageManagerImpl:Feign Response 关闭、绝对 URL 拉流 SSRF 校验(协议/主机/解析地址)
- davinci OuterCallFeignClient:补充契约说明
- cwos-common-aks AksConstant:final 类 + 私有构造防误实例化
- device-manager DeviceConstant:沿用 DEFAULT_APPLICATIONID 拼写修正
Made-with: Cursor
Former-commit-id: 0a34c76a82
This commit is contained in:
+34
@@ -0,0 +1,34 @@
|
||||
package cn.cloudwalk.data.resource.common.anno;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
import javax.validation.Constraint;
|
||||
import javax.validation.Payload;
|
||||
|
||||
@Documented
|
||||
@Constraint(validatedBy = {ListItemLengthValidator.class})
|
||||
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR, ElementType.PARAMETER})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface ListItemLength {
|
||||
int min() default 0;
|
||||
|
||||
int max() default 2147483647;
|
||||
|
||||
String message() default "{org.hibernate.validator.constraints.Length.message}";
|
||||
|
||||
Class<?>[] groups() default {};
|
||||
|
||||
Class<? extends Payload>[] payload() default {};
|
||||
|
||||
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR, ElementType.PARAMETER})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
public static @interface List {
|
||||
ListItemLength[] value();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+56
@@ -0,0 +1,56 @@
|
||||
package cn.cloudwalk.data.resource.common.anno;
|
||||
|
||||
import java.lang.annotation.Annotation;
|
||||
import java.util.List;
|
||||
import javax.validation.ConstraintValidator;
|
||||
import javax.validation.ConstraintValidatorContext;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ListItemLengthValidator
|
||||
implements ConstraintValidator<ListItemLength, List<?>>
|
||||
{
|
||||
private int min;
|
||||
private int max;
|
||||
|
||||
public void initialize(ListItemLength parameters) {
|
||||
this.min = parameters.min();
|
||||
this.max = parameters.max();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public boolean isValid(List<?> list, ConstraintValidatorContext context) {
|
||||
if (list == null) {
|
||||
return true;
|
||||
}
|
||||
for (Object obj : list) {
|
||||
if (obj != null) {
|
||||
int length = obj.toString().length();
|
||||
if (length < this.min || length > this.max) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
package cn.cloudwalk.data.resource.common.anno;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
import javax.validation.Constraint;
|
||||
import javax.validation.Payload;
|
||||
|
||||
@Documented
|
||||
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR, ElementType.PARAMETER})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Constraint(validatedBy = {ListItemNotBlankValidator.class})
|
||||
public @interface ListItemNotBlank {
|
||||
String message() default "{org.hibernate.validator.constraints.NotBlank.message}";
|
||||
|
||||
Class<?>[] groups() default {};
|
||||
|
||||
Class<? extends Payload>[] payload() default {};
|
||||
|
||||
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR, ElementType.PARAMETER})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
public static @interface List {
|
||||
ListItemNotBlank[] value();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
package cn.cloudwalk.data.resource.common.anno;
|
||||
|
||||
import java.lang.annotation.Annotation;
|
||||
import java.util.List;
|
||||
import javax.validation.ConstraintValidator;
|
||||
import javax.validation.ConstraintValidatorContext;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ListItemNotBlankValidator
|
||||
implements ConstraintValidator<ListItemNotBlank, List<?>>
|
||||
{
|
||||
public void initialize(ListItemNotBlank parameters) {}
|
||||
|
||||
public boolean isValid(List<?> list, ConstraintValidatorContext context) {
|
||||
if (list == null) {
|
||||
return true;
|
||||
}
|
||||
for (Object obj : list) {
|
||||
int length = (obj == null) ? 0 : obj.toString().trim().length();
|
||||
if (length <= 0) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
package cn.cloudwalk.data.resource.common.anno;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target({ElementType.FIELD})
|
||||
public @interface TemplateCol {
|
||||
String label();
|
||||
|
||||
int order();
|
||||
|
||||
boolean mandantory() default false;
|
||||
}
|
||||
|
||||
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package cn.cloudwalk.data.resource.common.validate;
|
||||
|
||||
public interface GroupOne {}
|
||||
|
||||
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package cn.cloudwalk.data.resource.common.validate;
|
||||
|
||||
public interface GroupThree {}
|
||||
|
||||
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package cn.cloudwalk.data.resource.common.validate;
|
||||
|
||||
public interface GroupTwo {}
|
||||
|
||||
|
||||
+132
@@ -0,0 +1,132 @@
|
||||
package cn.cloudwalk.data.resource.entity.api;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class Api
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 5668542284974182395L;
|
||||
private String serviceCode;
|
||||
private String name;
|
||||
private Short type;
|
||||
private String uri;
|
||||
private Short status;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 60 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 64 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 68 */ return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
/* 72 */ this.name = name;
|
||||
}
|
||||
|
||||
public Short getType() {
|
||||
/* 76 */ return this.type;
|
||||
}
|
||||
|
||||
public void setType(Short type) {
|
||||
/* 80 */ this.type = type;
|
||||
}
|
||||
|
||||
public String getUri() {
|
||||
/* 84 */ return this.uri;
|
||||
}
|
||||
|
||||
public void setUri(String uri) {
|
||||
/* 88 */ this.uri = uri;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 92 */ return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
/* 96 */ this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+49
@@ -0,0 +1,49 @@
|
||||
package cn.cloudwalk.data.resource.entity.api;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApiBaseDTO
|
||||
{
|
||||
private List<String> ids;
|
||||
private Short type;
|
||||
|
||||
public void setId(String apiId) {
|
||||
this.ids = new ArrayList<>();
|
||||
this.ids.add(apiId);
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public Short getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Short type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
package cn.cloudwalk.data.resource.entity.api;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApiCacheDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -4025341454018210772L;
|
||||
private String serviceCode;
|
||||
private List<Long> apiIds;
|
||||
|
||||
public void setApiId(Long apiId) {
|
||||
this.apiIds = new ArrayList<>(1);
|
||||
this.apiIds.add(apiId);
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public List<Long> getApiIds() {
|
||||
return this.apiIds;
|
||||
}
|
||||
|
||||
public void setApiIds(List<Long> apiIds) {
|
||||
this.apiIds = apiIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
package cn.cloudwalk.data.resource.entity.api;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApiEqualDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1750577135352623209L;
|
||||
private String serviceCode;
|
||||
private String name;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+276
@@ -0,0 +1,276 @@
|
||||
package cn.cloudwalk.data.resource.entity.api;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApiInfoResultDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 5054585723985026518L;
|
||||
private Long id;
|
||||
private String typeCode;
|
||||
private String channelType;
|
||||
private BigDecimal apiPrice;
|
||||
private String apiName;
|
||||
private String redirectUrl;
|
||||
private String apiDocUrl;
|
||||
private String apiDemoUrl;
|
||||
private Short paymentType;
|
||||
private String description;
|
||||
private String apiIcon;
|
||||
private Short applyType;
|
||||
private Integer giftsNum;
|
||||
private Short status;
|
||||
private Date createTime;
|
||||
private Date lastUpdateTime;
|
||||
private String requestPath;
|
||||
private Long createUserId;
|
||||
private Long lastUpdateUserId;
|
||||
private String serviceCode;
|
||||
|
||||
public Long getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getTypeCode() {
|
||||
return this.typeCode;
|
||||
}
|
||||
|
||||
public void setTypeCode(String typeCode) {
|
||||
this.typeCode = typeCode;
|
||||
}
|
||||
|
||||
public String getChannelType() {
|
||||
return this.channelType;
|
||||
}
|
||||
|
||||
public void setChannelType(String channelType) {
|
||||
this.channelType = channelType;
|
||||
}
|
||||
|
||||
public BigDecimal getApiPrice() {
|
||||
return this.apiPrice;
|
||||
}
|
||||
|
||||
public void setApiPrice(BigDecimal apiPrice) {
|
||||
this.apiPrice = apiPrice;
|
||||
}
|
||||
|
||||
public String getApiName() {
|
||||
return this.apiName;
|
||||
}
|
||||
|
||||
public void setApiName(String apiName) {
|
||||
this.apiName = apiName;
|
||||
}
|
||||
|
||||
public String getRedirectUrl() {
|
||||
return this.redirectUrl;
|
||||
}
|
||||
|
||||
public void setRedirectUrl(String redirectUrl) {
|
||||
this.redirectUrl = redirectUrl;
|
||||
}
|
||||
|
||||
public String getApiDocUrl() {
|
||||
return this.apiDocUrl;
|
||||
}
|
||||
|
||||
public void setApiDocUrl(String apiDocUrl) {
|
||||
this.apiDocUrl = apiDocUrl;
|
||||
}
|
||||
|
||||
public String getApiDemoUrl() {
|
||||
return this.apiDemoUrl;
|
||||
}
|
||||
|
||||
public void setApiDemoUrl(String apiDemoUrl) {
|
||||
this.apiDemoUrl = apiDemoUrl;
|
||||
}
|
||||
|
||||
public Short getPaymentType() {
|
||||
return this.paymentType;
|
||||
}
|
||||
|
||||
public void setPaymentType(Short paymentType) {
|
||||
this.paymentType = paymentType;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public String getApiIcon() {
|
||||
return this.apiIcon;
|
||||
}
|
||||
|
||||
public void setApiIcon(String apiIcon) {
|
||||
this.apiIcon = apiIcon;
|
||||
}
|
||||
|
||||
public Short getApplyType() {
|
||||
return this.applyType;
|
||||
}
|
||||
|
||||
public void setApplyType(Short applyType) {
|
||||
this.applyType = applyType;
|
||||
}
|
||||
|
||||
public Integer getGiftsNum() {
|
||||
return this.giftsNum;
|
||||
}
|
||||
|
||||
public void setGiftsNum(Integer giftsNum) {
|
||||
this.giftsNum = giftsNum;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Date getLastUpdateTime() {
|
||||
return this.lastUpdateTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateTime(Date lastUpdateTime) {
|
||||
this.lastUpdateTime = lastUpdateTime;
|
||||
}
|
||||
|
||||
public String getRequestPath() {
|
||||
return this.requestPath;
|
||||
}
|
||||
|
||||
public void setRequestPath(String requestPath) {
|
||||
this.requestPath = requestPath;
|
||||
}
|
||||
|
||||
public Long getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(Long createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public Long getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(Long lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+193
@@ -0,0 +1,193 @@
|
||||
package cn.cloudwalk.data.resource.entity.api;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApiQueryDTO
|
||||
{
|
||||
private String serviceCode;
|
||||
private Short type;
|
||||
private String name;
|
||||
private String uri;
|
||||
private Short status;
|
||||
private String createUserId;
|
||||
private String lastUpdateUserId;
|
||||
private Long createBeginTime;
|
||||
private Long createEndTime;
|
||||
private Long lastUpdateBeginTime;
|
||||
private Long lastUpdateEndTime;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 81 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 85 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public Short getType() {
|
||||
/* 89 */ return this.type;
|
||||
}
|
||||
|
||||
public void setType(Short type) {
|
||||
/* 93 */ this.type = type;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 97 */ return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getUri() {
|
||||
return this.uri;
|
||||
}
|
||||
|
||||
public void setUri(String uri) {
|
||||
this.uri = uri;
|
||||
}
|
||||
|
||||
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 String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Long getCreateBeginTime() {
|
||||
return this.createBeginTime;
|
||||
}
|
||||
|
||||
public void setCreateBeginTime(Long createBeginTime) {
|
||||
this.createBeginTime = createBeginTime;
|
||||
}
|
||||
|
||||
public Long getCreateEndTime() {
|
||||
return this.createEndTime;
|
||||
}
|
||||
|
||||
public void setCreateEndTime(Long createEndTime) {
|
||||
this.createEndTime = createEndTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateBeginTime() {
|
||||
return this.lastUpdateBeginTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateBeginTime(Long lastUpdateBeginTime) {
|
||||
this.lastUpdateBeginTime = lastUpdateBeginTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateEndTime() {
|
||||
return this.lastUpdateEndTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateEndTime(Long lastUpdateEndTime) {
|
||||
this.lastUpdateEndTime = lastUpdateEndTime;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
package cn.cloudwalk.data.resource.entity.api;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApiStatusDTO
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1621848357364230620L;
|
||||
private List<String> ids;
|
||||
private Short status;
|
||||
private Short type;
|
||||
|
||||
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 Short getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Short type) {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApiDetailRespDto
|
||||
{
|
||||
private Long id;
|
||||
private String apiName;
|
||||
private BigDecimal apiPrice;
|
||||
private Short paymentType;
|
||||
private String requestPath;
|
||||
private Integer visitLimit;
|
||||
private Integer qpsLimit;
|
||||
|
||||
public String getApiName() {
|
||||
return this.apiName;
|
||||
}
|
||||
|
||||
public void setApiName(String apiName) {
|
||||
this.apiName = apiName;
|
||||
}
|
||||
|
||||
public BigDecimal getApiPrice() {
|
||||
return this.apiPrice;
|
||||
}
|
||||
|
||||
public void setApiPrice(BigDecimal apiPrice) {
|
||||
this.apiPrice = apiPrice;
|
||||
}
|
||||
|
||||
public Short getPaymentType() {
|
||||
return this.paymentType;
|
||||
}
|
||||
|
||||
public void setPaymentType(Short paymentType) {
|
||||
this.paymentType = paymentType;
|
||||
}
|
||||
|
||||
public String getRequestPath() {
|
||||
return this.requestPath;
|
||||
}
|
||||
|
||||
public void setRequestPath(String requestPath) {
|
||||
this.requestPath = requestPath;
|
||||
}
|
||||
|
||||
public Integer getVisitLimit() {
|
||||
return this.visitLimit;
|
||||
}
|
||||
|
||||
public void setVisitLimit(Integer visitLimit) {
|
||||
this.visitLimit = visitLimit;
|
||||
}
|
||||
|
||||
public Integer getQpsLimit() {
|
||||
return this.qpsLimit;
|
||||
}
|
||||
|
||||
public void setQpsLimit(Integer qpsLimit) {
|
||||
this.qpsLimit = qpsLimit;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AppApiQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -5877694422587117544L;
|
||||
private String serviceCode;
|
||||
private Short status;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AppBusinessResultDTO
|
||||
{
|
||||
private String id;
|
||||
private String name;
|
||||
private String corpCode;
|
||||
private String remark;
|
||||
private Integer status;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getId() {
|
||||
/* 46 */ return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
/* 50 */ this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 54 */ return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
/* 58 */ this.name = name;
|
||||
}
|
||||
|
||||
public String getCorpCode() {
|
||||
/* 62 */ return this.corpCode;
|
||||
}
|
||||
|
||||
public void setCorpCode(String corpCode) {
|
||||
/* 66 */ this.corpCode = corpCode;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 70 */ return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
/* 74 */ this.remark = remark;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
/* 78 */ return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
/* 82 */ this.status = status;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
/* 86 */ return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
/* 90 */ this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
/* 94 */ return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
/* 98 */ this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AppInfoRespDto
|
||||
{
|
||||
private Long id;
|
||||
private String appIcon;
|
||||
private String serviceCode;
|
||||
private String appName;
|
||||
private String description;
|
||||
private Long appType;
|
||||
private Long state;
|
||||
|
||||
public Long getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getAppIcon() {
|
||||
return this.appIcon;
|
||||
}
|
||||
|
||||
public void setAppIcon(String appIcon) {
|
||||
this.appIcon = appIcon;
|
||||
}
|
||||
|
||||
public String getAppName() {
|
||||
return this.appName;
|
||||
}
|
||||
|
||||
public void setAppName(String appName) {
|
||||
this.appName = appName;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public Long getAppType() {
|
||||
return this.appType;
|
||||
}
|
||||
|
||||
public void setAppType(Long appType) {
|
||||
this.appType = appType;
|
||||
}
|
||||
|
||||
public Long getState() {
|
||||
return this.state;
|
||||
}
|
||||
|
||||
public void setState(Long state) {
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AppResQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -5877694422587117544L;
|
||||
private String serviceCode;
|
||||
private Short status;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+120
@@ -0,0 +1,120 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class Application
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -7354761278504958846L;
|
||||
private String businessId;
|
||||
private String serviceCode;
|
||||
private String name;
|
||||
private Short status;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getBusinessId() {
|
||||
/* 56 */ return this.businessId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 60 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 64 */ return this.name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 68 */ return this.status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 72 */ return this.remark;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
/* 76 */ return this.ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
/* 80 */ return this.ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
/* 84 */ return this.ext3;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
/* 88 */ this.businessId = businessId;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 92 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
/* 96 */ this.name = name;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+62
@@ -0,0 +1,62 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApplicationApiDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 7388402554465006327L;
|
||||
private List<String> apiIds;
|
||||
private List<String> applicationIds;
|
||||
|
||||
public void setApiId(String apiId) {
|
||||
this.apiIds = new ArrayList<>();
|
||||
this.apiIds.add(apiId);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationIds = new ArrayList<>();
|
||||
this.applicationIds.add(applicationId);
|
||||
}
|
||||
|
||||
public List<String> getApiIds() {
|
||||
return this.apiIds;
|
||||
}
|
||||
|
||||
public void setApiIds(List<String> apiIds) {
|
||||
this.apiIds = apiIds;
|
||||
}
|
||||
|
||||
public List<String> getApplicationIds() {
|
||||
return this.applicationIds;
|
||||
}
|
||||
|
||||
public void setApplicationIds(List<String> applicationIds) {
|
||||
this.applicationIds = applicationIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApplicationApiEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -5062148360655825780L;
|
||||
private String apiId;
|
||||
private String applicationId;
|
||||
|
||||
public String getApiId() {
|
||||
return this.apiId;
|
||||
}
|
||||
|
||||
public void setApiId(String apiId) {
|
||||
this.apiId = apiId;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApplicationApiQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 6980136106470527225L;
|
||||
private String applicationId;
|
||||
private List<String> apiIds;
|
||||
|
||||
public void setApiId(String apiId) {
|
||||
this.apiIds = new ArrayList<>();
|
||||
this.apiIds.add(apiId);
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public List<String> getApiIds() {
|
||||
return this.apiIds;
|
||||
}
|
||||
|
||||
public void setApiIds(List<String> apiIds) {
|
||||
this.apiIds = apiIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApplicationApiResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 1220538649543514668L;
|
||||
private String apiId;
|
||||
private String applicationId;
|
||||
|
||||
public String getApiId() {
|
||||
return this.apiId;
|
||||
}
|
||||
|
||||
public void setApiId(String apiId) {
|
||||
this.apiId = apiId;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApplicationBasicDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 3183935188714439829L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+205
@@ -0,0 +1,205 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApplicationQueryDTO
|
||||
{
|
||||
private String serviceCode;
|
||||
private String name;
|
||||
private String businessId;
|
||||
private List<String> businessIds;
|
||||
private Short status;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
private String createUserId;
|
||||
private String lastUpdateUserId;
|
||||
private Long createBeginTime;
|
||||
private Long createEndTime;
|
||||
private Long lastUpdateBeginTime;
|
||||
private Long lastUpdateEndTime;
|
||||
private List<String> serviceCodes;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 85 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 89 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 93 */ return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
/* 97 */ this.name = name;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
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 getCreateUserId() {
|
||||
return this.createUserId;
|
||||
}
|
||||
|
||||
public void setCreateUserId(String createUserId) {
|
||||
this.createUserId = createUserId;
|
||||
}
|
||||
|
||||
public String getLastUpdateUserId() {
|
||||
return this.lastUpdateUserId;
|
||||
}
|
||||
|
||||
public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
this.lastUpdateUserId = lastUpdateUserId;
|
||||
}
|
||||
|
||||
public Long getCreateBeginTime() {
|
||||
return this.createBeginTime;
|
||||
}
|
||||
|
||||
public void setCreateBeginTime(Long createBeginTime) {
|
||||
this.createBeginTime = createBeginTime;
|
||||
}
|
||||
|
||||
public Long getCreateEndTime() {
|
||||
return this.createEndTime;
|
||||
}
|
||||
|
||||
public void setCreateEndTime(Long createEndTime) {
|
||||
this.createEndTime = createEndTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateBeginTime() {
|
||||
return this.lastUpdateBeginTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateBeginTime(Long lastUpdateBeginTime) {
|
||||
this.lastUpdateBeginTime = lastUpdateBeginTime;
|
||||
}
|
||||
|
||||
public Long getLastUpdateEndTime() {
|
||||
return this.lastUpdateEndTime;
|
||||
}
|
||||
|
||||
public void setLastUpdateEndTime(Long lastUpdateEndTime) {
|
||||
this.lastUpdateEndTime = lastUpdateEndTime;
|
||||
}
|
||||
|
||||
public List<String> getServiceCodes() {
|
||||
return this.serviceCodes;
|
||||
}
|
||||
|
||||
public void setServiceCodes(List<String> serviceCodes) {
|
||||
this.serviceCodes = serviceCodes;
|
||||
}
|
||||
|
||||
public List<String> getBusinessIds() {
|
||||
return this.businessIds;
|
||||
}
|
||||
|
||||
public void setBusinessIds(List<String> businessIds) {
|
||||
this.businessIds = businessIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
package cn.cloudwalk.data.resource.entity.application;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ApplicationStatusDTO
|
||||
extends ApplicationBasicDTO
|
||||
{
|
||||
private static final long serialVersionUID = 6396728360909097979L;
|
||||
private Short status;
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthApiDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1036069770636714161L;
|
||||
private List<String> authorizationIds;
|
||||
private List<String> apiIds;
|
||||
|
||||
public void setAuthorizationId(String authorizationId) {
|
||||
this.authorizationIds = new ArrayList<>();
|
||||
this.authorizationIds.add(authorizationId);
|
||||
}
|
||||
|
||||
public List<String> getAuthorizationIds() {
|
||||
return this.authorizationIds;
|
||||
}
|
||||
|
||||
public List<String> getApiIds() {
|
||||
return this.apiIds;
|
||||
}
|
||||
|
||||
public void setAuthorizationIds(List<String> authorizationIds) {
|
||||
this.authorizationIds = authorizationIds;
|
||||
}
|
||||
|
||||
public void setApiIds(List<String> apiIds) {
|
||||
this.apiIds = apiIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthApiEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7440363173838306978L;
|
||||
private String authorizationId;
|
||||
private String apiId;
|
||||
|
||||
public String getAuthorizationId() {
|
||||
return this.authorizationId;
|
||||
}
|
||||
|
||||
public String getApiId() {
|
||||
return this.apiId;
|
||||
}
|
||||
|
||||
public void setAuthorizationId(String authorizationId) {
|
||||
this.authorizationId = authorizationId;
|
||||
}
|
||||
|
||||
public void setApiId(String apiId) {
|
||||
this.apiId = apiId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthApiQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 4943384365162526572L;
|
||||
private String authorizationId;
|
||||
private List<String> apiIds;
|
||||
|
||||
public String getAuthorizationId() {
|
||||
return this.authorizationId;
|
||||
}
|
||||
|
||||
public List<String> getApiIds() {
|
||||
return this.apiIds;
|
||||
}
|
||||
|
||||
public void setAuthorizationId(String authorizationId) {
|
||||
this.authorizationId = authorizationId;
|
||||
}
|
||||
|
||||
public void setApiIds(List<String> apiIds) {
|
||||
this.apiIds = apiIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthApiResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 7033910401212221570L;
|
||||
private String authorizationId;
|
||||
private String apiId;
|
||||
|
||||
public String getAuthorizationId() {
|
||||
return this.authorizationId;
|
||||
}
|
||||
|
||||
public void setAuthorizationId(String authorizationId) {
|
||||
this.authorizationId = authorizationId;
|
||||
}
|
||||
|
||||
public String getApiId() {
|
||||
return this.apiId;
|
||||
}
|
||||
|
||||
public void setApiId(String apiId) {
|
||||
this.apiId = apiId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthResourceDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1036069770636714161L;
|
||||
private List<String> authorizationIds;
|
||||
private List<String> resourceIds;
|
||||
|
||||
public void setAuthorizationId(String authorizationId) {
|
||||
this.authorizationIds = new ArrayList<>();
|
||||
this.authorizationIds.add(authorizationId);
|
||||
}
|
||||
|
||||
public List<String> getAuthorizationIds() {
|
||||
return this.authorizationIds;
|
||||
}
|
||||
|
||||
public List<String> getResourceIds() {
|
||||
return this.resourceIds;
|
||||
}
|
||||
|
||||
public void setAuthorizationIds(List<String> authorizationIds) {
|
||||
this.authorizationIds = authorizationIds;
|
||||
}
|
||||
|
||||
public void setResourceIds(List<String> resourceIds) {
|
||||
this.resourceIds = resourceIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthResourceEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7440363173838306978L;
|
||||
private String authorizationId;
|
||||
private String resourceId;
|
||||
|
||||
public String getAuthorizationId() {
|
||||
return this.authorizationId;
|
||||
}
|
||||
|
||||
public String getResourceId() {
|
||||
return this.resourceId;
|
||||
}
|
||||
|
||||
public void setAuthorizationId(String authorizationId) {
|
||||
this.authorizationId = authorizationId;
|
||||
}
|
||||
|
||||
public void setResourceId(String resourceId) {
|
||||
this.resourceId = resourceId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthResourceQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 4943384365162526572L;
|
||||
private String serviceCode;
|
||||
private String authorizationId;
|
||||
private List<String> resourceIds;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getAuthorizationId() {
|
||||
return this.authorizationId;
|
||||
}
|
||||
|
||||
public List<String> getResourceIds() {
|
||||
return this.resourceIds;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setAuthorizationId(String authorizationId) {
|
||||
this.authorizationId = authorizationId;
|
||||
}
|
||||
|
||||
public void setResourceIds(List<String> resourceIds) {
|
||||
this.resourceIds = resourceIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthResourceResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 7033910401212221570L;
|
||||
private Short status;
|
||||
private String authorizationId;
|
||||
private String resourceId;
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public String getAuthorizationId() {
|
||||
return this.authorizationId;
|
||||
}
|
||||
|
||||
public String getResourceId() {
|
||||
return this.resourceId;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setAuthorizationId(String authorizationId) {
|
||||
this.authorizationId = authorizationId;
|
||||
}
|
||||
|
||||
public void setResourceId(String resourceId) {
|
||||
this.resourceId = resourceId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthorizationDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -2274927645066331923L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+135
@@ -0,0 +1,135 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthorizationEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -1962330534933584364L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Short status;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 63 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
/* 67 */ return this.businessId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
/* 71 */ return this.code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 75 */ return this.name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 79 */ return this.status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 83 */ return this.remark;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
/* 87 */ return this.ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
/* 91 */ return this.ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
/* 95 */ return this.ext3;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 99 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+68
@@ -0,0 +1,68 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthorizationEqualDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 3240766834209608687L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String name;
|
||||
|
||||
public AuthorizationEqualDTO(String serviceCode, String businessId, String name) {
|
||||
setServiceCode(serviceCode);
|
||||
setBusinessId(businessId);
|
||||
setName(name);
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthorizationGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -5944854183808630498L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+135
@@ -0,0 +1,135 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthorizationQueryDTO
|
||||
extends CloudwalkBasePageForm
|
||||
{
|
||||
private static final long serialVersionUID = 3240766834209608687L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Short status;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 63 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
/* 67 */ return this.businessId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
/* 71 */ return this.code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 75 */ return this.name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 79 */ return this.status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 83 */ return this.remark;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
/* 87 */ return this.ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
/* 91 */ return this.ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
/* 95 */ return this.ext3;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 99 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+135
@@ -0,0 +1,135 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthorizationResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -3255345939417966399L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Short status;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 63 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
/* 67 */ return this.businessId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
/* 71 */ return this.code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 75 */ return this.name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 79 */ return this.status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 83 */ return this.remark;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
/* 87 */ return this.ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
/* 91 */ return this.ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
/* 95 */ return this.ext3;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 99 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
package cn.cloudwalk.data.resource.entity.authorization;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class AuthorizationStatusDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -5944854183808630498L;
|
||||
public List<String> ids;
|
||||
private Short status;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+93
@@ -0,0 +1,93 @@
|
||||
package cn.cloudwalk.data.resource.entity.dict;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class Dict
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -2030388568195357460L;
|
||||
private String code;
|
||||
private String name;
|
||||
private Short status;
|
||||
private String typeCode;
|
||||
private String parentId;
|
||||
private Integer orderBy;
|
||||
private String remark;
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getTypeCode() {
|
||||
return this.typeCode;
|
||||
}
|
||||
|
||||
public void setTypeCode(String typeCode) {
|
||||
this.typeCode = typeCode;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public Integer getOrderBy() {
|
||||
return this.orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(Integer orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
package cn.cloudwalk.data.resource.entity.dict;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DictStatusDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 7265248640175850715L;
|
||||
private List<String> ids;
|
||||
private Short status;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
package cn.cloudwalk.data.resource.entity.dict;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DictType
|
||||
{
|
||||
private String id;
|
||||
private String code;
|
||||
private String name;
|
||||
private Short status;
|
||||
private Short visible;
|
||||
private String serviceCode;
|
||||
private String remark;
|
||||
|
||||
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 String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Short getVisible() {
|
||||
return this.visible;
|
||||
}
|
||||
|
||||
public void setVisible(Short visible) {
|
||||
this.visible = visible;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
package cn.cloudwalk.data.resource.entity.dict;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class DictTypeStatusDTO
|
||||
{
|
||||
private List<String> ids;
|
||||
private Short status;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+106
@@ -0,0 +1,106 @@
|
||||
package cn.cloudwalk.data.resource.entity.enterprise;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class EnterpriseInfoDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 8264395476855079942L;
|
||||
private String name;
|
||||
private String corpCode;
|
||||
private Short status;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getName() {
|
||||
/* 50 */ return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
/* 54 */ this.name = name;
|
||||
}
|
||||
|
||||
public String getCorpCode() {
|
||||
/* 58 */ return this.corpCode;
|
||||
}
|
||||
|
||||
public void setCorpCode(String corpCode) {
|
||||
/* 62 */ this.corpCode = corpCode;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 66 */ return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
/* 70 */ this.status = status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 74 */ return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
/* 78 */ this.remark = remark;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
/* 82 */ return this.ext1;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
/* 86 */ this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
/* 90 */ return this.ext2;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
/* 94 */ this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
/* 98 */ return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+95
@@ -0,0 +1,95 @@
|
||||
package cn.cloudwalk.data.resource.entity.enterprise;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class EnterpriseQueryDTO
|
||||
extends CloudwalkBasePageForm
|
||||
{
|
||||
private static final long serialVersionUID = 4694598545857287148L;
|
||||
private String corpName;
|
||||
private List<String> corpCodes;
|
||||
private String loginName;
|
||||
private String name;
|
||||
private Short status;
|
||||
private Short userLevel;
|
||||
|
||||
public String getCorpName() {
|
||||
return this.corpName;
|
||||
}
|
||||
|
||||
public void setCorpName(String corpName) {
|
||||
this.corpName = corpName;
|
||||
}
|
||||
|
||||
public List<String> getCorpCodes() {
|
||||
return this.corpCodes;
|
||||
}
|
||||
|
||||
public void setCorpCodes(List<String> corpCodes) {
|
||||
this.corpCodes = corpCodes;
|
||||
}
|
||||
|
||||
public String getLoginName() {
|
||||
return this.loginName;
|
||||
}
|
||||
|
||||
public void setLoginName(String loginName) {
|
||||
this.loginName = loginName;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Short getUserLevel() {
|
||||
return this.userLevel;
|
||||
}
|
||||
|
||||
public void setUserLevel(Short userLevel) {
|
||||
this.userLevel = userLevel;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+184
@@ -0,0 +1,184 @@
|
||||
package cn.cloudwalk.data.resource.entity.enterprise;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class EnterpriseResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 1803902156130377090L;
|
||||
private String corpName;
|
||||
private String corpCode;
|
||||
private Short status;
|
||||
private String loginName;
|
||||
private String name;
|
||||
private String telephone;
|
||||
private String email;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
private String loginId;
|
||||
private String userId;
|
||||
|
||||
public String getCorpName() {
|
||||
/* 80 */ return this.corpName;
|
||||
}
|
||||
|
||||
public void setCorpName(String corpName) {
|
||||
/* 84 */ this.corpName = corpName;
|
||||
}
|
||||
|
||||
public String getCorpCode() {
|
||||
/* 88 */ return this.corpCode;
|
||||
}
|
||||
|
||||
public void setCorpCode(String corpCode) {
|
||||
/* 92 */ this.corpCode = corpCode;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 96 */ return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getLoginName() {
|
||||
return this.loginName;
|
||||
}
|
||||
|
||||
public void setLoginName(String loginName) {
|
||||
this.loginName = loginName;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
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 getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
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 getLoginId() {
|
||||
return this.loginId;
|
||||
}
|
||||
|
||||
public void setLoginId(String loginId) {
|
||||
this.loginId = loginId;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+81
@@ -0,0 +1,81 @@
|
||||
package cn.cloudwalk.data.resource.entity.group;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class GroupEqualDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1750577135352623209L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private Short status;
|
||||
private String name;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
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 getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
package cn.cloudwalk.data.resource.entity.group;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class GroupInfoDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -5913202337282159339L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+134
@@ -0,0 +1,134 @@
|
||||
package cn.cloudwalk.data.resource.entity.group;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class GroupInfoEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 2535982708701787723L;
|
||||
private String serviceCode;
|
||||
private String code;
|
||||
private String name;
|
||||
private Short status;
|
||||
private String remark;
|
||||
private String businessId;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getCode() {
|
||||
/* 62 */ return this.code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 66 */ return this.name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 70 */ return this.status;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 74 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 78 */ return this.remark;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
/* 82 */ this.code = code;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
/* 86 */ this.name = name;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
/* 90 */ this.status = status;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 94 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
/* 98 */ this.remark = remark;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
package cn.cloudwalk.data.resource.entity.group;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class GroupInfoGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 3351800057290160854L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+122
@@ -0,0 +1,122 @@
|
||||
package cn.cloudwalk.data.resource.entity.group;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class GroupInfoQueryDTO
|
||||
extends CloudwalkBasePageForm
|
||||
{
|
||||
private static final long serialVersionUID = -6191526420489456917L;
|
||||
private String code;
|
||||
private Short status;
|
||||
private String serviceCode;
|
||||
private String name;
|
||||
private String businessId;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getCode() {
|
||||
/* 58 */ return this.code;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 62 */ return this.status;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 66 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 70 */ return this.name;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
/* 74 */ this.code = code;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
/* 78 */ this.status = status;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 82 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
/* 86 */ this.name = name;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
/* 90 */ return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
/* 94 */ this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
/* 98 */ 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+135
@@ -0,0 +1,135 @@
|
||||
package cn.cloudwalk.data.resource.entity.group;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class GroupInfoResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 5167334339721045265L;
|
||||
private String code;
|
||||
private String businessId;
|
||||
private String name;
|
||||
private String serviceCode;
|
||||
private short status;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getCode() {
|
||||
/* 63 */ return this.code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 67 */ return this.name;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 71 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public short getStatus() {
|
||||
/* 75 */ return this.status;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 79 */ return this.remark;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
/* 83 */ this.code = code;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
/* 87 */ this.name = name;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 91 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setStatus(short status) {
|
||||
/* 95 */ this.status = status;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
/* 99 */ this.remark = remark;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
package cn.cloudwalk.data.resource.entity.group;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class GroupInfoStatusDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 2299318067801901919L;
|
||||
private List<String> ids;
|
||||
private Short status;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
package cn.cloudwalk.data.resource.entity.group;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class GroupRoleDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -3106002154806371452L;
|
||||
private List<String> groupIds;
|
||||
private List<String> roleIds;
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupIds = new ArrayList<>();
|
||||
this.groupIds.add(groupId);
|
||||
}
|
||||
|
||||
public List<String> getGroupIds() {
|
||||
return this.groupIds;
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
return this.roleIds;
|
||||
}
|
||||
|
||||
public void setGroupIds(List<String> groupIds) {
|
||||
this.groupIds = groupIds;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
this.roleIds = roleIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
package cn.cloudwalk.data.resource.entity.group;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class GroupRoleEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -1955119103768252289L;
|
||||
private String groupId;
|
||||
private String roleId;
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
}
|
||||
|
||||
public String getRoleId() {
|
||||
return this.roleId;
|
||||
}
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
package cn.cloudwalk.data.resource.entity.group;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class GroupRoleQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1376112297633122060L;
|
||||
private List<String> roleIds;
|
||||
private String groupId;
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
return this.roleIds;
|
||||
}
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
this.roleIds = roleIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
package cn.cloudwalk.data.resource.entity.group;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class GroupRoleResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 9043163992387661737L;
|
||||
private String roleId;
|
||||
private String groupId;
|
||||
private Short status;
|
||||
|
||||
public String getRoleId() {
|
||||
return this.roleId;
|
||||
}
|
||||
|
||||
public String getGroupId() {
|
||||
return this.groupId;
|
||||
}
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public void setGroupId(String groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+109
@@ -0,0 +1,109 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class CommonResourceDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -6050989869765583939L;
|
||||
private String serviceCode;
|
||||
private List<String> roleIds;
|
||||
private List<String> authIds;
|
||||
private List<String> resourceIds;
|
||||
private String name;
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
/* 46 */ this.roleIds = new ArrayList<>(1);
|
||||
/* 47 */ this.roleIds.add(roleId);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setAuthId(String authId) {
|
||||
/* 55 */ this.authIds = new ArrayList<>(1);
|
||||
/* 56 */ this.authIds.add(authId);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setResourceId(String resourceId) {
|
||||
/* 64 */ this.resourceIds = new ArrayList<>(1);
|
||||
/* 65 */ this.resourceIds.add(resourceId);
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 69 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 73 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
/* 77 */ return this.roleIds;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
/* 81 */ this.roleIds = roleIds;
|
||||
}
|
||||
|
||||
public List<String> getAuthIds() {
|
||||
/* 85 */ return this.authIds;
|
||||
}
|
||||
|
||||
public void setAuthIds(List<String> authIds) {
|
||||
/* 89 */ this.authIds = authIds;
|
||||
}
|
||||
|
||||
public List<String> getResourceIds() {
|
||||
/* 93 */ return this.resourceIds;
|
||||
}
|
||||
|
||||
public void setResourceIds(List<String> resourceIds) {
|
||||
/* 97 */ this.resourceIds = resourceIds;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+49
@@ -0,0 +1,49 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceApiDeltDTO
|
||||
{
|
||||
private List<String> apiIds;
|
||||
private List<String> resourceIds;
|
||||
|
||||
public void setResourceId(String resourceId) {
|
||||
this.resourceIds = new ArrayList<>();
|
||||
this.resourceIds.add(resourceId);
|
||||
}
|
||||
|
||||
public List<String> getApiIds() {
|
||||
return this.apiIds;
|
||||
}
|
||||
|
||||
public void setApiIds(List<String> apiIds) {
|
||||
this.apiIds = apiIds;
|
||||
}
|
||||
|
||||
public List<String> getResourceIds() {
|
||||
return this.resourceIds;
|
||||
}
|
||||
|
||||
public void setResourceIds(List<String> resourceIds) {
|
||||
this.resourceIds = resourceIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceApiEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7440363173838306978L;
|
||||
private String apiId;
|
||||
private String resourceId;
|
||||
|
||||
public String getApiId() {
|
||||
return this.apiId;
|
||||
}
|
||||
|
||||
public String getResourceId() {
|
||||
return this.resourceId;
|
||||
}
|
||||
|
||||
public void setApiId(String apiId) {
|
||||
this.apiId = apiId;
|
||||
}
|
||||
|
||||
public void setResourceId(String resourceId) {
|
||||
this.resourceId = resourceId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+63
@@ -0,0 +1,63 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceApiQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 4943384365162526572L;
|
||||
private List<String> apiIds;
|
||||
private List<String> resourceIds;
|
||||
private String serviceCode;
|
||||
|
||||
public void setResourceId(String resourceId) {
|
||||
this.resourceIds = new ArrayList<>();
|
||||
this.resourceIds.add(resourceId);
|
||||
}
|
||||
|
||||
public List<String> getApiIds() {
|
||||
return this.apiIds;
|
||||
}
|
||||
|
||||
public void setApiIds(List<String> apiIds) {
|
||||
this.apiIds = apiIds;
|
||||
}
|
||||
|
||||
public List<String> getResourceIds() {
|
||||
return this.resourceIds;
|
||||
}
|
||||
|
||||
public void setResourceIds(List<String> resourceIds) {
|
||||
this.resourceIds = resourceIds;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceApiResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 58667100208337857L;
|
||||
private String apiId;
|
||||
private String resourceId;
|
||||
|
||||
public String getApiId() {
|
||||
return this.apiId;
|
||||
}
|
||||
|
||||
public String getResourceId() {
|
||||
return this.resourceId;
|
||||
}
|
||||
|
||||
public void setApiId(String apiId) {
|
||||
this.apiId = apiId;
|
||||
}
|
||||
|
||||
public void setResourceId(String resourceId) {
|
||||
this.resourceId = resourceId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+96
@@ -0,0 +1,96 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceCacheDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -6050989869765583939L;
|
||||
private String serviceCode;
|
||||
private List<String> roleIds;
|
||||
private List<String> authIds;
|
||||
private List<String> resourceIds;
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleIds = new ArrayList<>(1);
|
||||
this.roleIds.add(roleId);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setAuthId(String authId) {
|
||||
this.authIds = new ArrayList<>(1);
|
||||
this.authIds.add(authId);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setResourceId(String resourceId) {
|
||||
this.resourceIds = new ArrayList<>(1);
|
||||
this.resourceIds.add(resourceId);
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
return this.roleIds;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
this.roleIds = roleIds;
|
||||
}
|
||||
|
||||
public List<String> getAuthIds() {
|
||||
return this.authIds;
|
||||
}
|
||||
|
||||
public void setAuthIds(List<String> authIds) {
|
||||
this.authIds = authIds;
|
||||
}
|
||||
|
||||
public List<String> getResourceIds() {
|
||||
return this.resourceIds;
|
||||
}
|
||||
|
||||
public void setResourceIds(List<String> resourceIds) {
|
||||
this.resourceIds = resourceIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceChildrenDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 3722071277058703990L;
|
||||
private String parentId;
|
||||
private String serviceCode;
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -5179764985539600965L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+225
@@ -0,0 +1,225 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -321047961029541536L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String applicationId;
|
||||
private String name;
|
||||
private String code;
|
||||
private String parentId;
|
||||
private String url;
|
||||
private Short type;
|
||||
private Short status;
|
||||
private Integer orderBy;
|
||||
private String icon;
|
||||
private String remark;
|
||||
private String path;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 97 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public Short getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Short type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getOrderBy() {
|
||||
return this.orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(Integer orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return this.icon;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
this.icon = icon;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getPath() {
|
||||
return this.path;
|
||||
}
|
||||
|
||||
public void setPath(String path) {
|
||||
this.path = path;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+55
@@ -0,0 +1,55 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceEqualDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1750577135352623209L;
|
||||
private String name;
|
||||
private String parentId;
|
||||
private String serviceCode;
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 5708313357458918304L;
|
||||
private List<String> ids;
|
||||
|
||||
public void setId(String resourceId) {
|
||||
if (StringUtils.hasText(resourceId)) {
|
||||
this.ids = new ArrayList<>();
|
||||
this.ids.add(resourceId);
|
||||
}
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+212
@@ -0,0 +1,212 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceQueryDTO
|
||||
extends CloudwalkBasePageForm
|
||||
{
|
||||
private static final long serialVersionUID = -7222465011473512814L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String applicationId;
|
||||
private String name;
|
||||
private String code;
|
||||
private String parentId;
|
||||
private String url;
|
||||
private Short type;
|
||||
private Short status;
|
||||
private String icon;
|
||||
private String remark;
|
||||
private String path;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 92 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 96 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return this.parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public Short getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Short type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return this.icon;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
this.icon = icon;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getPath() {
|
||||
return this.path;
|
||||
}
|
||||
|
||||
public void setPath(String path) {
|
||||
this.path = path;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+239
@@ -0,0 +1,239 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -2726165795936880135L;
|
||||
private String id;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String applicationId;
|
||||
private String code;
|
||||
private String name;
|
||||
private String url;
|
||||
private Short type;
|
||||
private Short status;
|
||||
private Integer orderBy;
|
||||
private String parentId;
|
||||
private String icon;
|
||||
private String remark;
|
||||
private String path;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
return this.businessId;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public String getApplicationId() {
|
||||
return this.applicationId;
|
||||
}
|
||||
|
||||
public void setApplicationId(String applicationId) {
|
||||
this.applicationId = applicationId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public Short getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(Short type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return this.icon;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
this.icon = icon;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getPath() {
|
||||
return this.path;
|
||||
}
|
||||
|
||||
public void setPath(String path) {
|
||||
this.path = path;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
return this.ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ResourceStatusDTO
|
||||
extends CloudwalkBaseTimes
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1621848357364230620L;
|
||||
private List<String> ids;
|
||||
private Short status;
|
||||
private List<String> codes;
|
||||
private List<String> paths;
|
||||
|
||||
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 List<String> getCodes() {
|
||||
return this.codes;
|
||||
}
|
||||
|
||||
public void setCodes(List<String> codes) {
|
||||
this.codes = codes;
|
||||
}
|
||||
|
||||
public List<String> getPaths() {
|
||||
return this.paths;
|
||||
}
|
||||
|
||||
public void setPaths(List<String> paths) {
|
||||
this.paths = paths;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+82
@@ -0,0 +1,82 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class UserAdminPageDTO
|
||||
{
|
||||
private String id;
|
||||
private String loginName;
|
||||
private String email;
|
||||
private String telephone;
|
||||
private String name;
|
||||
private Long createTime;
|
||||
private Integer status;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getLoginName() {
|
||||
return this.loginName;
|
||||
}
|
||||
|
||||
public void setLoginName(String loginName) {
|
||||
this.loginName = loginName;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Long getCreateTime() {
|
||||
return this.createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Long createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
package cn.cloudwalk.data.resource.entity.resource;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class UserAdminQueryDTO
|
||||
{
|
||||
private String loginName;
|
||||
private String name;
|
||||
private String telephone;
|
||||
private Integer status;
|
||||
private String email;
|
||||
|
||||
public String getLoginName() {
|
||||
return this.loginName;
|
||||
}
|
||||
|
||||
public void setLoginName(String loginName) {
|
||||
this.loginName = loginName;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getTelephone() {
|
||||
return this.telephone;
|
||||
}
|
||||
|
||||
public void setTelephone(String telephone) {
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleApiDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1036069770636714161L;
|
||||
private List<String> roleIds;
|
||||
private List<String> apiIds;
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleIds = new ArrayList<>();
|
||||
this.roleIds.add(roleId);
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
return this.roleIds;
|
||||
}
|
||||
|
||||
public List<String> getApiIds() {
|
||||
return this.apiIds;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
this.roleIds = roleIds;
|
||||
}
|
||||
|
||||
public void setApiIds(List<String> apiIds) {
|
||||
this.apiIds = apiIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+56
@@ -0,0 +1,56 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleApiEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7440363173838306978L;
|
||||
private String roleId;
|
||||
private String apiId;
|
||||
private Short status;
|
||||
|
||||
public String getRoleId() {
|
||||
return this.roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public String getApiId() {
|
||||
return this.apiId;
|
||||
}
|
||||
|
||||
public void setApiId(String apiId) {
|
||||
this.apiId = apiId;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleApiQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 4943384365162526572L;
|
||||
private List<String> apiIds;
|
||||
private List<String> roleIds;
|
||||
private String serviceCode;
|
||||
|
||||
public List<String> getApiIds() {
|
||||
return this.apiIds;
|
||||
}
|
||||
|
||||
public void setApiIds(List<String> apiIds) {
|
||||
this.apiIds = apiIds;
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
return this.roleIds;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
this.roleIds = roleIds;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleApiResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 7033910401212221570L;
|
||||
private String roleId;
|
||||
private String apiId;
|
||||
private Short status;
|
||||
|
||||
public String getRoleId() {
|
||||
return this.roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public String getApiId() {
|
||||
return this.apiId;
|
||||
}
|
||||
|
||||
public void setApiId(String apiId) {
|
||||
this.apiId = apiId;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+62
@@ -0,0 +1,62 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleAuthDeltDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 2590613760061065167L;
|
||||
private List<String> authorizationIds;
|
||||
private List<String> roleIds;
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleIds = new ArrayList<>();
|
||||
this.roleIds.add(roleId);
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
return this.roleIds;
|
||||
}
|
||||
|
||||
public List<String> getAuthorizationIds() {
|
||||
return this.authorizationIds;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
this.roleIds = roleIds;
|
||||
}
|
||||
|
||||
public void setAuthorizationIds(List<String> authorizationIds) {
|
||||
this.authorizationIds = authorizationIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleAuthEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 2590613760061065167L;
|
||||
private String authorizationId;
|
||||
private String roleId;
|
||||
|
||||
public String getRoleId() {
|
||||
return this.roleId;
|
||||
}
|
||||
|
||||
public String getAuthorizationId() {
|
||||
return this.authorizationId;
|
||||
}
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public void setAuthorizationId(String authorizationId) {
|
||||
this.authorizationId = authorizationId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleAuthQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 6162447636127839302L;
|
||||
private String serviceCode;
|
||||
private String roleId;
|
||||
private List<String> authorizationIds;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getRoleId() {
|
||||
return this.roleId;
|
||||
}
|
||||
|
||||
public List<String> getAuthorizationIds() {
|
||||
return this.authorizationIds;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public void setAuthorizationIds(List<String> authorizationIds) {
|
||||
this.authorizationIds = authorizationIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleAuthResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 2962110683901615192L;
|
||||
private String authorizationId;
|
||||
private String roleId;
|
||||
|
||||
public String getAuthorizationId() {
|
||||
return this.authorizationId;
|
||||
}
|
||||
|
||||
public void setAuthorizationId(String authorizationId) {
|
||||
this.authorizationId = authorizationId;
|
||||
}
|
||||
|
||||
public String getRoleId() {
|
||||
return this.roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 4519132900442103400L;
|
||||
private List<String> ids;
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+148
@@ -0,0 +1,148 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -4990831205786009945L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Short status;
|
||||
private Short builtIn;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 68 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
/* 72 */ return this.businessId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
/* 76 */ return this.code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 80 */ return this.name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 84 */ return this.status;
|
||||
}
|
||||
|
||||
public Short getBuiltIn() {
|
||||
/* 88 */ return this.builtIn;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 92 */ return this.remark;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
/* 96 */ return this.ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
return this.ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setBuiltIn(Short builtIn) {
|
||||
this.builtIn = builtIn;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+81
@@ -0,0 +1,81 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleEqualDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1750577135352623209L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private Short status;
|
||||
private String name;
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
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 getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+56
@@ -0,0 +1,56 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleGetsDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -3152431768082827101L;
|
||||
private List<String> ids;
|
||||
private Short builtIn;
|
||||
|
||||
public void setId(String roleId) {
|
||||
this.ids = new ArrayList<>();
|
||||
this.ids.add(roleId);
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public Short getBuiltIn() {
|
||||
return this.builtIn;
|
||||
}
|
||||
|
||||
public void setBuiltIn(Short builtIn) {
|
||||
this.builtIn = builtIn;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+133
@@ -0,0 +1,133 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleQueryDTO
|
||||
extends CloudwalkBasePageForm
|
||||
{
|
||||
private static final long serialVersionUID = 3397546817546246692L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Short status;
|
||||
private Short builtIn;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 61 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
/* 65 */ return this.businessId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
/* 69 */ return this.code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 73 */ return this.name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 77 */ return this.status;
|
||||
}
|
||||
|
||||
public Short getBuiltIn() {
|
||||
/* 81 */ return this.builtIn;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
/* 85 */ return this.ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
/* 89 */ return this.ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
/* 93 */ return this.ext3;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 97 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setBuiltIn(Short builtIn) {
|
||||
this.builtIn = builtIn;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleResQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -7556443540459787786L;
|
||||
private List<String> roleIds;
|
||||
private String serviceCode;
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleIds = new ArrayList<>();
|
||||
this.roleIds.add(roleId);
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
return this.roleIds;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
this.roleIds = roleIds;
|
||||
}
|
||||
|
||||
public String getServiceCode() {
|
||||
return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleResourceDeltDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -1036069770636714161L;
|
||||
private List<String> roleIds;
|
||||
private List<String> resourceIds;
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleIds = new ArrayList<>();
|
||||
this.roleIds.add(roleId);
|
||||
}
|
||||
|
||||
public List<String> getRoleIds() {
|
||||
return this.roleIds;
|
||||
}
|
||||
|
||||
public List<String> getResourceIds() {
|
||||
return this.resourceIds;
|
||||
}
|
||||
|
||||
public void setRoleIds(List<String> roleIds) {
|
||||
this.roleIds = roleIds;
|
||||
}
|
||||
|
||||
public void setResourceIds(List<String> resourceIds) {
|
||||
this.resourceIds = resourceIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleResourceEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7440363173838306978L;
|
||||
private String roleId;
|
||||
private String resourceId;
|
||||
|
||||
public String getRoleId() {
|
||||
return this.roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public String getResourceId() {
|
||||
return this.resourceId;
|
||||
}
|
||||
|
||||
public void setResourceId(String resourceId) {
|
||||
this.resourceId = resourceId;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleResourceQueryDTO
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 4943384365162526572L;
|
||||
private String roleId;
|
||||
private List<String> resourceIds;
|
||||
|
||||
public String getRoleId() {
|
||||
return this.roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public List<String> getResourceIds() {
|
||||
return this.resourceIds;
|
||||
}
|
||||
|
||||
public void setResourceIds(List<String> resourceIds) {
|
||||
this.resourceIds = resourceIds;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleResourceResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 7033910401212221570L;
|
||||
private String roleId;
|
||||
private String resourceId;
|
||||
private Short status;
|
||||
|
||||
public String getRoleId() {
|
||||
return this.roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(String roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public String getResourceId() {
|
||||
return this.resourceId;
|
||||
}
|
||||
|
||||
public void setResourceId(String resourceId) {
|
||||
this.resourceId = resourceId;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+147
@@ -0,0 +1,147 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleResultDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -3314964769044843165L;
|
||||
private String serviceCode;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String name;
|
||||
private Short status;
|
||||
private Short builtIn;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 67 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public String getBusinessId() {
|
||||
/* 71 */ return this.businessId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
/* 75 */ return this.code;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 79 */ return this.name;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
/* 83 */ return this.status;
|
||||
}
|
||||
|
||||
public Short getBuiltIn() {
|
||||
/* 87 */ return this.builtIn;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
/* 91 */ return this.remark;
|
||||
}
|
||||
|
||||
public String getExt1() {
|
||||
/* 95 */ return this.ext1;
|
||||
}
|
||||
|
||||
public String getExt2() {
|
||||
/* 99 */ return this.ext2;
|
||||
}
|
||||
|
||||
public String getExt3() {
|
||||
return this.ext3;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public void setBusinessId(String businessId) {
|
||||
this.businessId = businessId;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setBuiltIn(Short builtIn) {
|
||||
this.builtIn = builtIn;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public void setExt1(String ext1) {
|
||||
this.ext1 = ext1;
|
||||
}
|
||||
|
||||
public void setExt2(String ext2) {
|
||||
this.ext2 = ext2;
|
||||
}
|
||||
|
||||
public void setExt3(String ext3) {
|
||||
this.ext3 = ext3;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
package cn.cloudwalk.data.resource.entity.role;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class RoleStatusDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = 2476780334174958653L;
|
||||
private List<String> ids;
|
||||
private Short status;
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public List<String> getIds() {
|
||||
return this.ids;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
package cn.cloudwalk.data.resource.entity.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ServiceCodesDTO
|
||||
{
|
||||
private List<String> codes;
|
||||
|
||||
public List<String> getCodes() {
|
||||
return this.codes;
|
||||
}
|
||||
|
||||
public void setCodes(List<String> codes) {
|
||||
this.codes = codes;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+169
@@ -0,0 +1,169 @@
|
||||
package cn.cloudwalk.data.resource.entity.service;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ServiceDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -7440363173838306978L;
|
||||
private String serviceCode;
|
||||
private String name;
|
||||
private String groupCode;
|
||||
private String docUrl;
|
||||
private String icon;
|
||||
private Integer orderBy;
|
||||
private String packagePath;
|
||||
private String remark;
|
||||
private Short status;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
public String getServiceCode() {
|
||||
/* 73 */ return this.serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(String serviceCode) {
|
||||
/* 77 */ this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
/* 81 */ return this.name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
/* 85 */ this.name = name;
|
||||
}
|
||||
|
||||
public String getGroupCode() {
|
||||
/* 89 */ return this.groupCode;
|
||||
}
|
||||
|
||||
public void setGroupCode(String groupCode) {
|
||||
/* 93 */ this.groupCode = groupCode;
|
||||
}
|
||||
|
||||
public String getDocUrl() {
|
||||
/* 97 */ return this.docUrl;
|
||||
}
|
||||
|
||||
public void setDocUrl(String docUrl) {
|
||||
this.docUrl = docUrl;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return this.icon;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
this.icon = icon;
|
||||
}
|
||||
|
||||
public Integer getOrderBy() {
|
||||
return this.orderBy;
|
||||
}
|
||||
|
||||
public void setOrderBy(Integer orderBy) {
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
|
||||
public String getPackagePath() {
|
||||
return this.packagePath;
|
||||
}
|
||||
|
||||
public void setPackagePath(String packagePath) {
|
||||
this.packagePath = packagePath;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public Short getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(Short status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+97
@@ -0,0 +1,97 @@
|
||||
package cn.cloudwalk.data.resource.entity.service;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public class ServiceEditDTO
|
||||
extends CloudwalkBaseTimes
|
||||
{
|
||||
private static final long serialVersionUID = -1011705863871387063L;
|
||||
private String id;
|
||||
private String name;
|
||||
private String remark;
|
||||
private String ext1;
|
||||
private String ext2;
|
||||
private String ext3;
|
||||
|
||||
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 getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user