|
@@ -19,8 +19,6 @@ public class RuleEngineDTO implements Serializable {
|
|
|
groups = {GroupUpdate.class},
|
|
groups = {GroupUpdate.class},
|
|
|
message = "id不能为空"
|
|
message = "id不能为空"
|
|
|
) Long id;
|
|
) Long id;
|
|
|
- @ApiModelProperty("项目ID")
|
|
|
|
|
- private Long projectId;
|
|
|
|
|
@ApiModelProperty("名称")
|
|
@ApiModelProperty("名称")
|
|
|
private @NotEmpty(
|
|
private @NotEmpty(
|
|
|
groups = {GroupUpdate.class, GroupInsert.class},
|
|
groups = {GroupUpdate.class, GroupInsert.class},
|
|
@@ -48,10 +46,6 @@ public class RuleEngineDTO implements Serializable {
|
|
|
return this.id;
|
|
return this.id;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public Long getProjectId() {
|
|
|
|
|
- return this.projectId;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
public String getName() {
|
|
public String getName() {
|
|
|
return this.name;
|
|
return this.name;
|
|
|
}
|
|
}
|
|
@@ -76,10 +70,6 @@ public class RuleEngineDTO implements Serializable {
|
|
|
this.id = id;
|
|
this.id = id;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setProjectId(final Long projectId) {
|
|
|
|
|
- this.projectId = projectId;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
public void setName(final String name) {
|
|
public void setName(final String name) {
|
|
|
this.name = name;
|
|
this.name = name;
|
|
|
}
|
|
}
|
|
@@ -120,16 +110,6 @@ public class RuleEngineDTO implements Serializable {
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- Object this$projectId = this.getProjectId();
|
|
|
|
|
- Object other$projectId = other.getProjectId();
|
|
|
|
|
- if (this$projectId == null) {
|
|
|
|
|
- if (other$projectId != null) {
|
|
|
|
|
- return false;
|
|
|
|
|
- }
|
|
|
|
|
- } else if (!this$projectId.equals(other$projectId)) {
|
|
|
|
|
- return false;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
Object this$status = this.getStatus();
|
|
Object this$status = this.getStatus();
|
|
|
Object other$status = other.getStatus();
|
|
Object other$status = other.getStatus();
|
|
|
if (this$status == null) {
|
|
if (this$status == null) {
|
|
@@ -184,8 +164,6 @@ public class RuleEngineDTO implements Serializable {
|
|
|
int result = 1;
|
|
int result = 1;
|
|
|
Object $id = this.getId();
|
|
Object $id = this.getId();
|
|
|
result = result * 59 + ($id == null ? 43 : $id.hashCode());
|
|
result = result * 59 + ($id == null ? 43 : $id.hashCode());
|
|
|
- Object $projectId = this.getProjectId();
|
|
|
|
|
- result = result * 59 + ($projectId == null ? 43 : $projectId.hashCode());
|
|
|
|
|
Object $status = this.getStatus();
|
|
Object $status = this.getStatus();
|
|
|
result = result * 59 + ($status == null ? 43 : $status.hashCode());
|
|
result = result * 59 + ($status == null ? 43 : $status.hashCode());
|
|
|
Object $name = this.getName();
|
|
Object $name = this.getName();
|
|
@@ -198,7 +176,7 @@ public class RuleEngineDTO implements Serializable {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public String toString() {
|
|
public String toString() {
|
|
|
- return "RuleEngineDTO(id=" + this.getId() + ", projectId=" + this.getProjectId() + ", name=" + this.getName() + ", status=" + this.getStatus() + ", descr=" + this.getDescr() + ", detail=" + this.getDetail() + ")";
|
|
|
|
|
|
|
+ return "RuleEngineDTO(id=" + this.getId() + ", name=" + this.getName() + ", status=" + this.getStatus() + ", descr=" + this.getDescr() + ", detail=" + this.getDetail() + ")";
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public RuleEngineDTO(final @NotNull(
|
|
public RuleEngineDTO(final @NotNull(
|
|
@@ -209,7 +187,6 @@ public class RuleEngineDTO implements Serializable {
|
|
|
message = "空间不能为空"
|
|
message = "空间不能为空"
|
|
|
) Integer status, final String descr, final String detail) {
|
|
) Integer status, final String descr, final String detail) {
|
|
|
this.id = id;
|
|
this.id = id;
|
|
|
- this.projectId = projectId;
|
|
|
|
|
this.name = name;
|
|
this.name = name;
|
|
|
this.status = status;
|
|
this.status = status;
|
|
|
this.descr = descr;
|
|
this.descr = descr;
|
|
@@ -271,7 +248,7 @@ public class RuleEngineDTO implements Serializable {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public String toString() {
|
|
public String toString() {
|
|
|
- return "RuleEngineDTO.RuleEngineDTOBuilder(id=" + this.id + ", projectId=" + this.projectId + ", name=" + this.name + ", status=" + this.status + ", descr=" + this.descr + ", detail=" + this.detail + ")";
|
|
|
|
|
|
|
+ return "RuleEngineDTO.RuleEngineDTOBuilder(id=" + this.id + ", name=" + this.name + ", status=" + this.status + ", descr=" + this.descr + ", detail=" + this.detail + ")";
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|