From c27b939fa5fa6ce4d712f7e9ced2ad811d69d5ec Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期三, 30 十月 2024 20:46:25 +0800
Subject: [PATCH] 去掉dnc部分
---
smart-man-boot/src/main/java/com/qianwen/smartman/modules/mdc/entity/SuperAggregateOutput.java | 41 +++++++++++++++++++++--------------------
1 files changed, 21 insertions(+), 20 deletions(-)
diff --git a/smart-man-boot/src/main/java/com/qianwen/smartman/modules/mdc/entity/SuperAggregateOutput.java b/smart-man-boot/src/main/java/com/qianwen/smartman/modules/mdc/entity/SuperAggregateOutput.java
index 8baceb8..03ceca3 100644
--- a/smart-man-boot/src/main/java/com/qianwen/smartman/modules/mdc/entity/SuperAggregateOutput.java
+++ b/smart-man-boot/src/main/java/com/qianwen/smartman/modules/mdc/entity/SuperAggregateOutput.java
@@ -4,8 +4,9 @@
public class SuperAggregateOutput extends SuperAggregate {
private static final long serialVersionUID = 1074211007569731042L;
- private Timestamp ts;
- private Timestamp preTs;
+
+ private Timestamp time;
+ private Timestamp preTime;
private Long output;
private Long curOutput;
private Long preOutput;
@@ -58,8 +59,8 @@
} else if (!this$employeeId.equals(other$employeeId)) {
return false;
}
- Object this$ts = getTs();
- Object other$ts = other.getTs();
+ Object this$ts = getTime();
+ Object other$ts = other.getTime();
if (this$ts == null) {
if (other$ts != null) {
return false;
@@ -67,8 +68,8 @@
} else if (!this$ts.equals(other$ts)) {
return false;
}
- Object this$preTs = getPreTs();
- Object other$preTs = other.getPreTs();
+ Object this$preTs = getPreTime();
+ Object other$preTs = other.getPreTime();
if (this$preTs == null) {
if (other$preTs != null) {
return false;
@@ -119,9 +120,9 @@
int result4 = (result3 * 59) + ($preOutput == null ? 43 : $preOutput.hashCode());
Object $employeeId = getEmployeeId();
int result5 = (result4 * 59) + ($employeeId == null ? 43 : $employeeId.hashCode());
- Object $ts = getTs();
+ Object $ts = getTime();
int result6 = (result5 * 59) + ($ts == null ? 43 : $ts.hashCode());
- Object $preTs = getPreTs();
+ Object $preTs = getPreTime();
int result7 = (result6 * 59) + ($preTs == null ? 43 : $preTs.hashCode());
Object $program = getProgram();
int result8 = (result7 * 59) + ($program == null ? 43 : $program.hashCode());
@@ -131,12 +132,12 @@
return (result9 * 59) + ($productName == null ? 43 : $productName.hashCode());
}
- public void setTs(final Timestamp ts) {
- this.ts = ts;
+ public void setTime(final Timestamp time) {
+ this.time = time;
}
- public void setPreTs(final Timestamp preTs) {
- this.preTs = preTs;
+ public void setPreTs(final Timestamp preTime) {
+ this.preTime = preTime;
}
public void setOutput(final Long output) {
@@ -169,15 +170,15 @@
@Override // org.springblade.modules.mdc.entity.SuperAggregate
public String toString() {
- return "SuperAggregateOutput(ts=" + getTs() + ", preTs=" + getPreTs() + ", output=" + getOutput() + ", curOutput=" + getCurOutput() + ", preOutput=" + getPreOutput() + ", program=" + getProgram() + ", productCode=" + getProductCode() + ", productName=" + getProductName() + ", employeeId=" + getEmployeeId() + ")";
+ return "SuperAggregateOutput(ts=" + getTime() + ", preTs=" + getPreTime() + ", output=" + getOutput() + ", curOutput=" + getCurOutput() + ", preOutput=" + getPreOutput() + ", program=" + getProgram() + ", productCode=" + getProductCode() + ", productName=" + getProductName() + ", employeeId=" + getEmployeeId() + ")";
}
public SuperAggregateOutput() {
}
- public SuperAggregateOutput(final Timestamp ts, final Timestamp preTs, final Long output, final Long curOutput, final Long preOutput, final String program, final String productCode, final String productName, final Long employeeId) {
- this.ts = ts;
- this.preTs = preTs;
+ public SuperAggregateOutput(final Timestamp time, final Timestamp preTime, final Long output, final Long curOutput, final Long preOutput, final String program, final String productCode, final String productName, final Long employeeId) {
+ this.time = time;
+ this.preTime = preTime;
this.output = output;
this.curOutput = curOutput;
this.preOutput = preOutput;
@@ -187,12 +188,12 @@
this.employeeId = employeeId;
}
- public Timestamp getTs() {
- return this.ts;
+ public Timestamp getTime() {
+ return this.time;
}
- public Timestamp getPreTs() {
- return this.preTs;
+ public Timestamp getPreTime() {
+ return this.preTime;
}
public Long getOutput() {
--
Gitblit v1.9.3