|
|
@@ -17,8 +17,6 @@ public class RuleEngineCronVO implements Serializable {
|
|
|
private String cron;
|
|
|
@ApiModelProperty("项目ID")
|
|
|
private Long projectId;
|
|
|
- @ApiModelProperty("空间ID")
|
|
|
- private Long spaceId;
|
|
|
@ApiModelProperty("更新人")
|
|
|
private Long updatedBy;
|
|
|
@ApiModelProperty("记录更新时间")
|
|
|
@@ -52,10 +50,6 @@ public class RuleEngineCronVO implements Serializable {
|
|
|
return this.projectId;
|
|
|
}
|
|
|
|
|
|
- public Long getSpaceId() {
|
|
|
- return this.spaceId;
|
|
|
- }
|
|
|
-
|
|
|
public Long getUpdatedBy() {
|
|
|
return this.updatedBy;
|
|
|
}
|
|
|
@@ -92,10 +86,6 @@ public class RuleEngineCronVO implements Serializable {
|
|
|
this.projectId = projectId;
|
|
|
}
|
|
|
|
|
|
- public void setSpaceId(final Long spaceId) {
|
|
|
- this.spaceId = spaceId;
|
|
|
- }
|
|
|
-
|
|
|
public void setUpdatedBy(final Long updatedBy) {
|
|
|
this.updatedBy = updatedBy;
|
|
|
}
|
|
|
@@ -162,16 +152,6 @@ public class RuleEngineCronVO implements Serializable {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- Object this$spaceId = this.getSpaceId();
|
|
|
- Object other$spaceId = other.getSpaceId();
|
|
|
- if (this$spaceId == null) {
|
|
|
- if (other$spaceId != null) {
|
|
|
- return false;
|
|
|
- }
|
|
|
- } else if (!this$spaceId.equals(other$spaceId)) {
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
Object this$updatedBy = this.getUpdatedBy();
|
|
|
Object other$updatedBy = other.getUpdatedBy();
|
|
|
if (this$updatedBy == null) {
|
|
|
@@ -242,8 +222,6 @@ public class RuleEngineCronVO implements Serializable {
|
|
|
result = result * 59 + ($ruleEngineName == null ? 43 : $ruleEngineName.hashCode());
|
|
|
Object $projectId = this.getProjectId();
|
|
|
result = result * 59 + ($projectId == null ? 43 : $projectId.hashCode());
|
|
|
- Object $spaceId = this.getSpaceId();
|
|
|
- result = result * 59 + ($spaceId == null ? 43 : $spaceId.hashCode());
|
|
|
Object $updatedBy = this.getUpdatedBy();
|
|
|
result = result * 59 + ($updatedBy == null ? 43 : $updatedBy.hashCode());
|
|
|
Object $createdBy = this.getCreatedBy();
|
|
|
@@ -258,16 +236,15 @@ public class RuleEngineCronVO implements Serializable {
|
|
|
}
|
|
|
|
|
|
public String toString() {
|
|
|
- return "RuleEngineCronVO(id=" + this.getId() + ", ruleEngineId=" + this.getRuleEngineId() + ", ruleEngineName=" + this.getRuleEngineName() + ", cron=" + this.getCron() + ", projectId=" + this.getProjectId() + ", spaceId=" + this.getSpaceId() + ", updatedBy=" + this.getUpdatedBy() + ", updateTime=" + this.getUpdateTime() + ", createdBy=" + this.getCreatedBy() + ", createTime=" + this.getCreateTime() + ")";
|
|
|
+ return "RuleEngineCronVO(id=" + this.getId() + ", ruleEngineId=" + this.getRuleEngineId() + ", ruleEngineName=" + this.getRuleEngineName() + ", cron=" + this.getCron() + ", projectId=" + this.getProjectId() + ", updatedBy=" + this.getUpdatedBy() + ", updateTime=" + this.getUpdateTime() + ", createdBy=" + this.getCreatedBy() + ", createTime=" + this.getCreateTime() + ")";
|
|
|
}
|
|
|
|
|
|
- public RuleEngineCronVO(final Long id, final Long ruleEngineId, final Long ruleEngineName, final String cron, final Long projectId, final Long spaceId, final Long updatedBy, final String updateTime, final Long createdBy, final String createTime) {
|
|
|
+ public RuleEngineCronVO(final Long id, final Long ruleEngineId, final Long ruleEngineName, final String cron, final Long projectId, final Long updatedBy, final String updateTime, final Long createdBy, final String createTime) {
|
|
|
this.id = id;
|
|
|
this.ruleEngineId = ruleEngineId;
|
|
|
this.ruleEngineName = ruleEngineName;
|
|
|
this.cron = cron;
|
|
|
this.projectId = projectId;
|
|
|
- this.spaceId = spaceId;
|
|
|
this.updatedBy = updatedBy;
|
|
|
this.updateTime = updateTime;
|
|
|
this.createdBy = createdBy;
|
|
|
@@ -283,7 +260,6 @@ public class RuleEngineCronVO implements Serializable {
|
|
|
private Long ruleEngineName;
|
|
|
private String cron;
|
|
|
private Long projectId;
|
|
|
- private Long spaceId;
|
|
|
private Long updatedBy;
|
|
|
private String updateTime;
|
|
|
private Long createdBy;
|
|
|
@@ -317,11 +293,6 @@ public class RuleEngineCronVO implements Serializable {
|
|
|
return this;
|
|
|
}
|
|
|
|
|
|
- public RuleEngineCronVOBuilder spaceId(final Long spaceId) {
|
|
|
- this.spaceId = spaceId;
|
|
|
- return this;
|
|
|
- }
|
|
|
-
|
|
|
public RuleEngineCronVOBuilder updatedBy(final Long updatedBy) {
|
|
|
this.updatedBy = updatedBy;
|
|
|
return this;
|
|
|
@@ -343,11 +314,11 @@ public class RuleEngineCronVO implements Serializable {
|
|
|
}
|
|
|
|
|
|
public RuleEngineCronVO build() {
|
|
|
- return new RuleEngineCronVO(this.id, this.ruleEngineId, this.ruleEngineName, this.cron, this.projectId, this.spaceId, this.updatedBy, this.updateTime, this.createdBy, this.createTime);
|
|
|
+ return new RuleEngineCronVO(this.id, this.ruleEngineId, this.ruleEngineName, this.cron, this.projectId, this.updatedBy, this.updateTime, this.createdBy, this.createTime);
|
|
|
}
|
|
|
|
|
|
public String toString() {
|
|
|
- return "RuleEngineCronVO.RuleEngineCronVOBuilder(id=" + this.id + ", ruleEngineId=" + this.ruleEngineId + ", ruleEngineName=" + this.ruleEngineName + ", cron=" + this.cron + ", projectId=" + this.projectId + ", spaceId=" + this.spaceId + ", updatedBy=" + this.updatedBy + ", updateTime=" + this.updateTime + ", createdBy=" + this.createdBy + ", createTime=" + this.createTime + ")";
|
|
|
+ return "RuleEngineCronVO.RuleEngineCronVOBuilder(id=" + this.id + ", ruleEngineId=" + this.ruleEngineId + ", ruleEngineName=" + this.ruleEngineName + ", cron=" + this.cron + ", projectId=" + this.projectId + ", updatedBy=" + this.updatedBy + ", updateTime=" + this.updateTime + ", createdBy=" + this.createdBy + ", createTime=" + this.createTime + ")";
|
|
|
}
|
|
|
}
|
|
|
}
|