Ver código fonte

修改字段类型 因为和SqlServer的不一致 导致映射失败问题

王苗苗 6 meses atrás
pai
commit
c87c9b3801

+ 6 - 6
ruoyi-admin/src/main/java/com/ruoyi/web/controller/business/BusinessController.java

@@ -46,13 +46,13 @@ public class BusinessController {
     @GetMapping("/testSlaveDB")
     public String testSlaveDB(){
         DynamicDataSourceContextHolder.setDataSourceType(DataSourceType.SLAVE.name());
-        List<BizDevice> bizDevices = this.bizDeviceMapper.selectBizDeviceList(null);
-        List<BizWaterWork> bizWaterWorks = bizWaterWorkMapper.selectBizWaterWorkList(BizWaterWork.builder().worksId(1L).build());
-        List<ZAssay> zAssays = this.zAssayMapper.selectZAssayList(ZAssay.builder().assayId(1L).build());
-        List<ZAssayResult> zAssayResults = this.zAssayResultMapper.selectZAssayResultList(ZAssayResult.builder().resultId(1L).build());
-        List<ZQualityValue> zQualityValues = this.zQualityValueMapper.selectZQualityValueList(ZQualityValue.builder().valueId(1L).build());
+        BizDevice bizDevice = this.bizDeviceMapper.selectBizDeviceByDeviceId(10L);
+        BizWaterWork bizWaterWork = bizWaterWorkMapper.selectBizWaterWorkByWorksId(212L);
+        ZAssay zAssay = this.zAssayMapper.selectZAssayByAssayId(8L);
+        ZAssayResult zAssayResult = this.zAssayResultMapper.selectZAssayResultByResultId(4L);
+        ZQualityValue zQualityValue = this.zQualityValueMapper.selectZQualityValueByValueId(1L);
         DynamicDataSourceContextHolder.clearDataSourceType();
-        return JSON.toJSONString(bizDevices);
+        return JSON.toJSONString(bizDevice);
     }
 
     //------------------------下面是需要的智能国际化验室的业务接口,汇总跃渊数据库的数据(本系统相关的,放到MySQL;从库是跃渊的SqlServer数据库)------------------------

+ 7 - 261
ruoyi-system/src/main/java/com/ruoyi/business/domain/BizDevice.java

@@ -2,7 +2,10 @@ package com.ruoyi.business.domain;
 
 import java.util.Date;
 
+import lombok.AllArgsConstructor;
 import lombok.Builder;
+import lombok.Data;
+import lombok.NoArgsConstructor;
 import org.apache.commons.lang3.builder.ToStringBuilder;
 import org.apache.commons.lang3.builder.ToStringStyle;
 import com.ruoyi.common.annotation.Excel;
@@ -14,7 +17,11 @@ import com.ruoyi.common.core.domain.BaseEntity;
  * @author slibra
  * @date 2024-09-26
  */
+
 @Builder
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
 public class BizDevice extends BaseEntity
 {
     private static final long serialVersionUID = 1L;
@@ -117,265 +124,4 @@ public class BizDevice extends BaseEntity
     /** 设备类型(1:化验室,2:连续检测) */
     @Excel(name = "设备类型(1:化验室,2:连续检测)")
     private String type;
-
-    public void setDeviceId(Long deviceId) 
-    {
-        this.deviceId = deviceId;
-    }
-
-    public Long getDeviceId() 
-    {
-        return deviceId;
-    }
-    public void setDeviceNo(String deviceNo) 
-    {
-        this.deviceNo = deviceNo;
-    }
-
-    public String getDeviceNo() 
-    {
-        return deviceNo;
-    }
-    public void setDeviceName(String deviceName) 
-    {
-        this.deviceName = deviceName;
-    }
-
-    public String getDeviceName() 
-    {
-        return deviceName;
-    }
-    public void setDeviceSn(String deviceSn) 
-    {
-        this.deviceSn = deviceSn;
-    }
-
-    public String getDeviceSn() 
-    {
-        return deviceSn;
-    }
-    public void setDeviceModel(String deviceModel) 
-    {
-        this.deviceModel = deviceModel;
-    }
-
-    public String getDeviceModel() 
-    {
-        return deviceModel;
-    }
-    public void setDeviceMaker(String deviceMaker) 
-    {
-        this.deviceMaker = deviceMaker;
-    }
-
-    public String getDeviceMaker() 
-    {
-        return deviceMaker;
-    }
-    public void setDeviceWorks(Long deviceWorks) 
-    {
-        this.deviceWorks = deviceWorks;
-    }
-
-    public Long getDeviceWorks() 
-    {
-        return deviceWorks;
-    }
-    public void setDeviceMaintainer(String deviceMaintainer) 
-    {
-        this.deviceMaintainer = deviceMaintainer;
-    }
-
-    public String getDeviceMaintainer() 
-    {
-        return deviceMaintainer;
-    }
-    public void setDeviceTel(String deviceTel) 
-    {
-        this.deviceTel = deviceTel;
-    }
-
-    public String getDeviceTel() 
-    {
-        return deviceTel;
-    }
-    public void setDeviceType(String deviceType) 
-    {
-        this.deviceType = deviceType;
-    }
-
-    public String getDeviceType() 
-    {
-        return deviceType;
-    }
-    public void setDeviceStatus(String deviceStatus) 
-    {
-        this.deviceStatus = deviceStatus;
-    }
-
-    public String getDeviceStatus() 
-    {
-        return deviceStatus;
-    }
-    public void setAssayStatus(String assayStatus) 
-    {
-        this.assayStatus = assayStatus;
-    }
-
-    public String getAssayStatus() 
-    {
-        return assayStatus;
-    }
-    public void setAssayTime(Date assayTime) 
-    {
-        this.assayTime = assayTime;
-    }
-
-    public Date getAssayTime() 
-    {
-        return assayTime;
-    }
-    public void setRepairTime(Date repairTime) 
-    {
-        this.repairTime = repairTime;
-    }
-
-    public Date getRepairTime() 
-    {
-        return repairTime;
-    }
-    public void setRepairBy(String repairBy) 
-    {
-        this.repairBy = repairBy;
-    }
-
-    public String getRepairBy() 
-    {
-        return repairBy;
-    }
-    public void setFaultCode(String faultCode) 
-    {
-        this.faultCode = faultCode;
-    }
-
-    public String getFaultCode() 
-    {
-        return faultCode;
-    }
-    public void setDeviceXujieJieguo(String deviceXujieJieguo) 
-    {
-        this.deviceXujieJieguo = deviceXujieJieguo;
-    }
-
-    public String getDeviceXujieJieguo() 
-    {
-        return deviceXujieJieguo;
-    }
-    public void setDeviceXujieBaojing(String deviceXujieBaojing) 
-    {
-        this.deviceXujieBaojing = deviceXujieBaojing;
-    }
-
-    public String getDeviceXujieBaojing() 
-    {
-        return deviceXujieBaojing;
-    }
-    public void setDeviceProvince(String deviceProvince) 
-    {
-        this.deviceProvince = deviceProvince;
-    }
-
-    public String getDeviceProvince() 
-    {
-        return deviceProvince;
-    }
-    public void setDeviceCity(String deviceCity) 
-    {
-        this.deviceCity = deviceCity;
-    }
-
-    public String getDeviceCity() 
-    {
-        return deviceCity;
-    }
-    public void setDeviceArea(String deviceArea) 
-    {
-        this.deviceArea = deviceArea;
-    }
-
-    public String getDeviceArea() 
-    {
-        return deviceArea;
-    }
-    public void setDeviceLongitude(String deviceLongitude) 
-    {
-        this.deviceLongitude = deviceLongitude;
-    }
-
-    public String getDeviceLongitude() 
-    {
-        return deviceLongitude;
-    }
-    public void setDeviceLatitude(String deviceLatitude) 
-    {
-        this.deviceLatitude = deviceLatitude;
-    }
-
-    public String getDeviceLatitude() 
-    {
-        return deviceLatitude;
-    }
-    public void setDeviceAddress(String deviceAddress) 
-    {
-        this.deviceAddress = deviceAddress;
-    }
-
-    public String getDeviceAddress() 
-    {
-        return deviceAddress;
-    }
-    public void setType(String type) 
-    {
-        this.type = type;
-    }
-
-    public String getType() 
-    {
-        return type;
-    }
-
-    @Override
-    public String toString() {
-        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
-            .append("deviceId", getDeviceId())
-            .append("deviceNo", getDeviceNo())
-            .append("deviceName", getDeviceName())
-            .append("deviceSn", getDeviceSn())
-            .append("deviceModel", getDeviceModel())
-            .append("deviceMaker", getDeviceMaker())
-            .append("deviceWorks", getDeviceWorks())
-            .append("deviceMaintainer", getDeviceMaintainer())
-            .append("deviceTel", getDeviceTel())
-            .append("deviceType", getDeviceType())
-            .append("deviceStatus", getDeviceStatus())
-            .append("assayStatus", getAssayStatus())
-            .append("assayTime", getAssayTime())
-            .append("repairTime", getRepairTime())
-            .append("repairBy", getRepairBy())
-            .append("createBy", getCreateBy())
-            .append("createTime", getCreateTime())
-            .append("updateBy", getUpdateBy())
-            .append("updateTime", getUpdateTime())
-            .append("faultCode", getFaultCode())
-            .append("deviceXujieJieguo", getDeviceXujieJieguo())
-            .append("deviceXujieBaojing", getDeviceXujieBaojing())
-            .append("deviceProvince", getDeviceProvince())
-            .append("deviceCity", getDeviceCity())
-            .append("deviceArea", getDeviceArea())
-            .append("deviceLongitude", getDeviceLongitude())
-            .append("deviceLatitude", getDeviceLatitude())
-            .append("deviceAddress", getDeviceAddress())
-            .append("type", getType())
-            .toString();
-    }
 }

+ 6 - 207
ruoyi-system/src/main/java/com/ruoyi/business/domain/BizWaterWork.java

@@ -1,6 +1,9 @@
 package com.ruoyi.business.domain;
 
+import lombok.AllArgsConstructor;
 import lombok.Builder;
+import lombok.Data;
+import lombok.NoArgsConstructor;
 import org.apache.commons.lang3.builder.ToStringBuilder;
 import org.apache.commons.lang3.builder.ToStringStyle;
 import com.ruoyi.common.annotation.Excel;
@@ -13,6 +16,9 @@ import com.ruoyi.common.core.domain.BaseEntity;
  * @date 2024-09-26
  */
 @Builder
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
 public class BizWaterWork extends BaseEntity
 {
     private static final long serialVersionUID = 1L;
@@ -95,214 +101,7 @@ public class BizWaterWork extends BaseEntity
     @Excel(name = "联系电话")
     private String worksTel;
 
-    public void setWorksId(Long worksId) 
-    {
-        this.worksId = worksId;
-    }
 
-    public Long getWorksId() 
-    {
-        return worksId;
-    }
-    public void setParentId(Long parentId) 
-    {
-        this.parentId = parentId;
-    }
 
-    public Long getParentId() 
-    {
-        return parentId;
-    }
-    public void setAncestors(String ancestors) 
-    {
-        this.ancestors = ancestors;
-    }
 
-    public String getAncestors() 
-    {
-        return ancestors;
-    }
-    public void setWorksName(String worksName) 
-    {
-        this.worksName = worksName;
-    }
-
-    public String getWorksName() 
-    {
-        return worksName;
-    }
-    public void setOrderNum(Long orderNum) 
-    {
-        this.orderNum = orderNum;
-    }
-
-    public Long getOrderNum() 
-    {
-        return orderNum;
-    }
-    public void setWorksStatus(String worksStatus) 
-    {
-        this.worksStatus = worksStatus;
-    }
-
-    public String getWorksStatus() 
-    {
-        return worksStatus;
-    }
-    public void setDelFlag(String delFlag) 
-    {
-        this.delFlag = delFlag;
-    }
-
-    public String getDelFlag() 
-    {
-        return delFlag;
-    }
-    public void setWorksNo(String worksNo) 
-    {
-        this.worksNo = worksNo;
-    }
-
-    public String getWorksNo() 
-    {
-        return worksNo;
-    }
-    public void setWorksProvince(String worksProvince) 
-    {
-        this.worksProvince = worksProvince;
-    }
-
-    public String getWorksProvince() 
-    {
-        return worksProvince;
-    }
-    public void setWorksCity(String worksCity) 
-    {
-        this.worksCity = worksCity;
-    }
-
-    public String getWorksCity() 
-    {
-        return worksCity;
-    }
-    public void setWorksArea(String worksArea) 
-    {
-        this.worksArea = worksArea;
-    }
-
-    public String getWorksArea() 
-    {
-        return worksArea;
-    }
-    public void setWorksLongitude(String worksLongitude) 
-    {
-        this.worksLongitude = worksLongitude;
-    }
-
-    public String getWorksLongitude() 
-    {
-        return worksLongitude;
-    }
-    public void setWorksLatitude(String worksLatitude) 
-    {
-        this.worksLatitude = worksLatitude;
-    }
-
-    public String getWorksLatitude() 
-    {
-        return worksLatitude;
-    }
-    public void setWorksAddress(String worksAddress) 
-    {
-        this.worksAddress = worksAddress;
-    }
-
-    public String getWorksAddress() 
-    {
-        return worksAddress;
-    }
-    public void setWorksCount(Long worksCount) 
-    {
-        this.worksCount = worksCount;
-    }
-
-    public Long getWorksCount() 
-    {
-        return worksCount;
-    }
-    public void setWorksType(String worksType) 
-    {
-        this.worksType = worksType;
-    }
-
-    public String getWorksType() 
-    {
-        return worksType;
-    }
-    public void setWorksCenter(String worksCenter) 
-    {
-        this.worksCenter = worksCenter;
-    }
-
-    public String getWorksCenter() 
-    {
-        return worksCenter;
-    }
-    public void setWorksBelong(Long worksBelong) 
-    {
-        this.worksBelong = worksBelong;
-    }
-
-    public Long getWorksBelong() 
-    {
-        return worksBelong;
-    }
-    public void setWorksMaintainer(String worksMaintainer) 
-    {
-        this.worksMaintainer = worksMaintainer;
-    }
-
-    public String getWorksMaintainer() 
-    {
-        return worksMaintainer;
-    }
-    public void setWorksTel(String worksTel) 
-    {
-        this.worksTel = worksTel;
-    }
-
-    public String getWorksTel() 
-    {
-        return worksTel;
-    }
-
-    @Override
-    public String toString() {
-        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
-            .append("worksId", getWorksId())
-            .append("parentId", getParentId())
-            .append("ancestors", getAncestors())
-            .append("worksName", getWorksName())
-            .append("orderNum", getOrderNum())
-            .append("worksStatus", getWorksStatus())
-            .append("delFlag", getDelFlag())
-            .append("createBy", getCreateBy())
-            .append("createTime", getCreateTime())
-            .append("updateBy", getUpdateBy())
-            .append("updateTime", getUpdateTime())
-            .append("worksNo", getWorksNo())
-            .append("worksProvince", getWorksProvince())
-            .append("worksCity", getWorksCity())
-            .append("worksArea", getWorksArea())
-            .append("worksLongitude", getWorksLongitude())
-            .append("worksLatitude", getWorksLatitude())
-            .append("worksAddress", getWorksAddress())
-            .append("worksCount", getWorksCount())
-            .append("worksType", getWorksType())
-            .append("worksCenter", getWorksCenter())
-            .append("worksBelong", getWorksBelong())
-            .append("worksMaintainer", getWorksMaintainer())
-            .append("worksTel", getWorksTel())
-            .toString();
-    }
 }

+ 6 - 200
ruoyi-system/src/main/java/com/ruoyi/business/domain/ZAssay.java

@@ -1,6 +1,9 @@
 package com.ruoyi.business.domain;
 
+import lombok.AllArgsConstructor;
 import lombok.Builder;
+import lombok.Data;
+import lombok.NoArgsConstructor;
 import org.apache.commons.lang3.builder.ToStringBuilder;
 import org.apache.commons.lang3.builder.ToStringStyle;
 import com.ruoyi.common.annotation.Excel;
@@ -13,6 +16,9 @@ import com.ruoyi.common.core.domain.BaseEntity;
  * @date 2024-09-26
  */
 @Builder
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
 public class ZAssay extends BaseEntity
 {
     private static final long serialVersionUID = 1L;
@@ -92,204 +98,4 @@ public class ZAssay extends BaseEntity
     @Excel(name = "化验方式(0-自动化验,1-手动化验)")
     private String assayMethod;
 
-    public void setAssayId(Long assayId) 
-    {
-        this.assayId = assayId;
-    }
-
-    public Long getAssayId() 
-    {
-        return assayId;
-    }
-    public void setAssayNo(String assayNo) 
-    {
-        this.assayNo = assayNo;
-    }
-
-    public String getAssayNo() 
-    {
-        return assayNo;
-    }
-    public void setDeviceNo(String deviceNo) 
-    {
-        this.deviceNo = deviceNo;
-    }
-
-    public String getDeviceNo() 
-    {
-        return deviceNo;
-    }
-    public void setAssayType(String assayType) 
-    {
-        this.assayType = assayType;
-    }
-
-    public String getAssayType() 
-    {
-        return assayType;
-    }
-    public void setAssayBigprocess(String assayBigprocess) 
-    {
-        this.assayBigprocess = assayBigprocess;
-    }
-
-    public String getAssayBigprocess() 
-    {
-        return assayBigprocess;
-    }
-    public void setAssaySmallprocess(String assaySmallprocess) 
-    {
-        this.assaySmallprocess = assaySmallprocess;
-    }
-
-    public String getAssaySmallprocess() 
-    {
-        return assaySmallprocess;
-    }
-    public void setBeginTime(String beginTime) 
-    {
-        this.beginTime = beginTime;
-    }
-
-    public String getBeginTime() 
-    {
-        return beginTime;
-    }
-    public void setEndTime(String endTime) 
-    {
-        this.endTime = endTime;
-    }
-
-    public String getEndTime() 
-    {
-        return endTime;
-    }
-    public void setAssayDate(String assayDate) 
-    {
-        this.assayDate = assayDate;
-    }
-
-    public String getAssayDate() 
-    {
-        return assayDate;
-    }
-    public void setAssayBy(String assayBy) 
-    {
-        this.assayBy = assayBy;
-    }
-
-    public String getAssayBy() 
-    {
-        return assayBy;
-    }
-    public void setVersion(String version) 
-    {
-        this.version = version;
-    }
-
-    public String getVersion() 
-    {
-        return version;
-    }
-    public void setStepName(String stepName) 
-    {
-        this.stepName = stepName;
-    }
-
-    public String getStepName() 
-    {
-        return stepName;
-    }
-    public void setStepTotal(String stepTotal) 
-    {
-        this.stepTotal = stepTotal;
-    }
-
-    public String getStepTotal() 
-    {
-        return stepTotal;
-    }
-    public void setStepNow(String stepNow) 
-    {
-        this.stepNow = stepNow;
-    }
-
-    public String getStepNow() 
-    {
-        return stepNow;
-    }
-    public void setStepInfo1(String stepInfo1) 
-    {
-        this.stepInfo1 = stepInfo1;
-    }
-
-    public String getStepInfo1() 
-    {
-        return stepInfo1;
-    }
-    public void setStepInfo2(String stepInfo2) 
-    {
-        this.stepInfo2 = stepInfo2;
-    }
-
-    public String getStepInfo2() 
-    {
-        return stepInfo2;
-    }
-    public void setStepInfo3(String stepInfo3) 
-    {
-        this.stepInfo3 = stepInfo3;
-    }
-
-    public String getStepInfo3() 
-    {
-        return stepInfo3;
-    }
-    public void setAssayStatus(String assayStatus) 
-    {
-        this.assayStatus = assayStatus;
-    }
-
-    public String getAssayStatus() 
-    {
-        return assayStatus;
-    }
-    public void setAssayMethod(String assayMethod) 
-    {
-        this.assayMethod = assayMethod;
-    }
-
-    public String getAssayMethod() 
-    {
-        return assayMethod;
-    }
-
-    @Override
-    public String toString() {
-        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
-            .append("assayId", getAssayId())
-            .append("assayNo", getAssayNo())
-            .append("deviceNo", getDeviceNo())
-            .append("assayType", getAssayType())
-            .append("assayBigprocess", getAssayBigprocess())
-            .append("assaySmallprocess", getAssaySmallprocess())
-            .append("beginTime", getBeginTime())
-            .append("endTime", getEndTime())
-            .append("assayDate", getAssayDate())
-            .append("assayBy", getAssayBy())
-            .append("createBy", getCreateBy())
-            .append("createTime", getCreateTime())
-            .append("updateBy", getUpdateBy())
-            .append("updateTime", getUpdateTime())
-            .append("version", getVersion())
-            .append("stepName", getStepName())
-            .append("stepTotal", getStepTotal())
-            .append("stepNow", getStepNow())
-            .append("stepInfo1", getStepInfo1())
-            .append("stepInfo2", getStepInfo2())
-            .append("stepInfo3", getStepInfo3())
-            .append("assayStatus", getAssayStatus())
-            .append("assayMethod", getAssayMethod())
-            .toString();
-    }
 }

+ 25 - 341
ruoyi-system/src/main/java/com/ruoyi/business/domain/ZAssayResult.java

@@ -1,11 +1,17 @@
 package com.ruoyi.business.domain;
 
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.AllArgsConstructor;
 import lombok.Builder;
+import lombok.Data;
+import lombok.NoArgsConstructor;
 import org.apache.commons.lang3.builder.ToStringBuilder;
 import org.apache.commons.lang3.builder.ToStringStyle;
 import com.ruoyi.common.annotation.Excel;
 import com.ruoyi.common.core.domain.BaseEntity;
 
+import java.util.Date;
+
 /**
  * 化验结果明细对象 z_assay_result
  * 
@@ -13,7 +19,10 @@ import com.ruoyi.common.core.domain.BaseEntity;
  * @date 2024-09-26
  */
 @Builder
-public class ZAssayResult extends BaseEntity
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+public class ZAssayResult
 {
     private static final long serialVersionUID = 1L;
 
@@ -148,344 +157,19 @@ public class ZAssayResult extends BaseEntity
     @Excel(name = "(0:未读,1:已读)")
     private String readFlag;
 
-    public void setResultId(Long resultId) 
-    {
-        this.resultId = resultId;
-    }
-
-    public Long getResultId() 
-    {
-        return resultId;
-    }
-    public void setAssayNo(String assayNo) 
-    {
-        this.assayNo = assayNo;
-    }
-
-    public String getAssayNo() 
-    {
-        return assayNo;
-    }
-    public void setResultNo(String resultNo) 
-    {
-        this.resultNo = resultNo;
-    }
-
-    public String getResultNo() 
-    {
-        return resultNo;
-    }
-    public void setSampleNo(String sampleNo) 
-    {
-        this.sampleNo = sampleNo;
-    }
-
-    public String getSampleNo() 
-    {
-        return sampleNo;
-    }
-    public void setSampleVolume(Long sampleVolume) 
-    {
-        this.sampleVolume = sampleVolume;
-    }
-
-    public Long getSampleVolume() 
-    {
-        return sampleVolume;
-    }
-    public void setDeviceNo(String deviceNo) 
-    {
-        this.deviceNo = deviceNo;
-    }
-
-    public String getDeviceNo() 
-    {
-        return deviceNo;
-    }
-    public void setAssayItem(String assayItem) 
-    {
-        this.assayItem = assayItem;
-    }
-
-    public String getAssayItem() 
-    {
-        return assayItem;
-    }
-    public void setResultConcentration(Long resultConcentration) 
-    {
-        this.resultConcentration = resultConcentration;
-    }
-
-    public Long getResultConcentration() 
-    {
-        return resultConcentration;
-    }
-    public void setResultAbs(Long resultAbs) 
-    {
-        this.resultAbs = resultAbs;
-    }
-
-    public Long getResultAbs() 
-    {
-        return resultAbs;
-    }
-    public void setResultDate(String resultDate) 
-    {
-        this.resultDate = resultDate;
-    }
-
-    public String getResultDate() 
-    {
-        return resultDate;
-    }
-    public void setResultTime(String resultTime) 
-    {
-        this.resultTime = resultTime;
-    }
-
-    public String getResultTime() 
-    {
-        return resultTime;
-    }
-    public void setCurveK0(Long curveK0) 
-    {
-        this.curveK0 = curveK0;
-    }
-
-    public Long getCurveK0() 
-    {
-        return curveK0;
-    }
-    public void setCurveK1(Long curveK1) 
-    {
-        this.curveK1 = curveK1;
-    }
-
-    public Long getCurveK1() 
-    {
-        return curveK1;
-    }
-    public void setCurveId(Long curveId) 
-    {
-        this.curveId = curveId;
-    }
-
-    public Long getCurveId() 
-    {
-        return curveId;
-    }
-    public void setJ1901S01(Long j1901S01) 
-    {
-        this.j1901S01 = j1901S01;
-    }
-
-    public Long getJ1901S01() 
-    {
-        return j1901S01;
-    }
-    public void setJ1901D01(Long j1901D01) 
-    {
-        this.j1901D01 = j1901D01;
-    }
-
-    public Long getJ1901D01() 
-    {
-        return j1901D01;
-    }
-    public void setJ1901R01(Long j1901R01) 
-    {
-        this.j1901R01 = j1901R01;
-    }
-
-    public Long getJ1901R01() 
-    {
-        return j1901R01;
-    }
-    public void setJ1901S1(Long j1901S1) 
-    {
-        this.j1901S1 = j1901S1;
-    }
-
-    public Long getJ1901S1() 
-    {
-        return j1901S1;
-    }
-    public void setJ1901D1(Long j1901D1) 
-    {
-        this.j1901D1 = j1901D1;
-    }
-
-    public Long getJ1901D1() 
-    {
-        return j1901D1;
-    }
-    public void setJ1901R1(Long j1901R1) 
-    {
-        this.j1901R1 = j1901R1;
-    }
-
-    public Long getJ1901R1() 
-    {
-        return j1901R1;
-    }
-    public void setJ1901S02(Long j1901S02) 
-    {
-        this.j1901S02 = j1901S02;
-    }
-
-    public Long getJ1901S02() 
-    {
-        return j1901S02;
-    }
-    public void setJ1901D02(Long j1901D02) 
-    {
-        this.j1901D02 = j1901D02;
-    }
-
-    public Long getJ1901D02() 
-    {
-        return j1901D02;
-    }
-    public void setJ1901R02(Long j1901R02) 
-    {
-        this.j1901R02 = j1901R02;
-    }
-
-    public Long getJ1901R02() 
-    {
-        return j1901R02;
-    }
-    public void setJ1901S2(Long j1901S2) 
-    {
-        this.j1901S2 = j1901S2;
-    }
-
-    public Long getJ1901S2() 
-    {
-        return j1901S2;
-    }
-    public void setJ1901D2(Long j1901D2) 
-    {
-        this.j1901D2 = j1901D2;
-    }
-
-    public Long getJ1901D2() 
-    {
-        return j1901D2;
-    }
-    public void setJ1901R2(Long j1901R2) 
-    {
-        this.j1901R2 = j1901R2;
-    }
-
-    public Long getJ1901R2() 
-    {
-        return j1901R2;
-    }
-    public void setAssayType(String assayType) 
-    {
-        this.assayType = assayType;
-    }
-
-    public String getAssayType() 
-    {
-        return assayType;
-    }
-    public void setSamplePost(Long samplePost) 
-    {
-        this.samplePost = samplePost;
-    }
-
-    public Long getSamplePost() 
-    {
-        return samplePost;
-    }
-    public void setResultWendu(Long resultWendu) 
-    {
-        this.resultWendu = resultWendu;
-    }
-
-    public Long getResultWendu() 
-    {
-        return resultWendu;
-    }
-    public void setResultShidu(Long resultShidu) 
-    {
-        this.resultShidu = resultShidu;
-    }
-
-    public Long getResultShidu() 
-    {
-        return resultShidu;
-    }
-    public void setOriginalConcentration(Long originalConcentration) 
-    {
-        this.originalConcentration = originalConcentration;
-    }
-
-    public Long getOriginalConcentration() 
-    {
-        return originalConcentration;
-    }
-    public void setCurveNo(String curveNo) 
-    {
-        this.curveNo = curveNo;
-    }
-
-    public String getCurveNo() 
-    {
-        return curveNo;
-    }
-    public void setReadFlag(String readFlag) 
-    {
-        this.readFlag = readFlag;
-    }
-
-    public String getReadFlag() 
-    {
-        return readFlag;
-    }
-
-    @Override
-    public String toString() {
-        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
-            .append("resultId", getResultId())
-            .append("assayNo", getAssayNo())
-            .append("resultNo", getResultNo())
-            .append("sampleNo", getSampleNo())
-            .append("sampleVolume", getSampleVolume())
-            .append("deviceNo", getDeviceNo())
-            .append("assayItem", getAssayItem())
-            .append("resultConcentration", getResultConcentration())
-            .append("resultAbs", getResultAbs())
-            .append("resultDate", getResultDate())
-            .append("resultTime", getResultTime())
-            .append("curveK0", getCurveK0())
-            .append("curveK1", getCurveK1())
-            .append("curveId", getCurveId())
-            .append("createBy", getCreateBy())
-            .append("createTime", getCreateTime())
-            .append("updateBy", getUpdateBy())
-            .append("updateTime", getUpdateTime())
-            .append("j1901S01", getJ1901S01())
-            .append("j1901D01", getJ1901D01())
-            .append("j1901R01", getJ1901R01())
-            .append("j1901S1", getJ1901S1())
-            .append("j1901D1", getJ1901D1())
-            .append("j1901R1", getJ1901R1())
-            .append("j1901S02", getJ1901S02())
-            .append("j1901D02", getJ1901D02())
-            .append("j1901R02", getJ1901R02())
-            .append("j1901S2", getJ1901S2())
-            .append("j1901D2", getJ1901D2())
-            .append("j1901R2", getJ1901R2())
-            .append("assayType", getAssayType())
-            .append("samplePost", getSamplePost())
-            .append("resultWendu", getResultWendu())
-            .append("resultShidu", getResultShidu())
-            .append("originalConcentration", getOriginalConcentration())
-            .append("curveNo", getCurveNo())
-            .append("readFlag", getReadFlag())
-            .toString();
-    }
+
+    //SqlServer存放的是字符串,所以这里要改成字符串类型
+
+    /** 创建时间 */
+    private String createTime;
+
+    /** 创建者 */
+    private String createBy;
+
+    /** 更新时间 */
+    private String updateTime;
+
+    /** 更新者 */
+    private String updateBy;
+
 }

+ 6 - 88
ruoyi-system/src/main/java/com/ruoyi/business/domain/ZQualityValue.java

@@ -2,7 +2,10 @@ package com.ruoyi.business.domain;
 
 import java.util.Date;
 import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.AllArgsConstructor;
 import lombok.Builder;
+import lombok.Data;
+import lombok.NoArgsConstructor;
 import org.apache.commons.lang3.builder.ToStringBuilder;
 import org.apache.commons.lang3.builder.ToStringStyle;
 import com.ruoyi.common.annotation.Excel;
@@ -15,6 +18,9 @@ import com.ruoyi.common.core.domain.BaseEntity;
  * @date 2024-09-26
  */
 @Builder
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
 public class ZQualityValue extends BaseEntity
 {
     private static final long serialVersionUID = 1L;
@@ -52,92 +58,4 @@ public class ZQualityValue extends BaseEntity
     @Excel(name = "有效开始时间", width = 30, dateFormat = "yyyy-MM-dd")
     private Date beginTime;
 
-    public void setValueId(Long valueId) 
-    {
-        this.valueId = valueId;
-    }
-
-    public Long getValueId() 
-    {
-        return valueId;
-    }
-    public void setDeviceWorks(Long deviceWorks) 
-    {
-        this.deviceWorks = deviceWorks;
-    }
-
-    public Long getDeviceWorks() 
-    {
-        return deviceWorks;
-    }
-    public void setAssayItem(String assayItem) 
-    {
-        this.assayItem = assayItem;
-    }
-
-    public String getAssayItem() 
-    {
-        return assayItem;
-    }
-    public void setResultValue(Long resultValue) 
-    {
-        this.resultValue = resultValue;
-    }
-
-    public Long getResultValue() 
-    {
-        return resultValue;
-    }
-    public void setEndTime(Date endTime) 
-    {
-        this.endTime = endTime;
-    }
-
-    public Date getEndTime() 
-    {
-        return endTime;
-    }
-    public void setLowValue(Long lowValue) 
-    {
-        this.lowValue = lowValue;
-    }
-
-    public Long getLowValue() 
-    {
-        return lowValue;
-    }
-    public void setHighValue(Long highValue) 
-    {
-        this.highValue = highValue;
-    }
-
-    public Long getHighValue() 
-    {
-        return highValue;
-    }
-    public void setBeginTime(Date beginTime) 
-    {
-        this.beginTime = beginTime;
-    }
-
-    public Date getBeginTime() 
-    {
-        return beginTime;
-    }
-
-    @Override
-    public String toString() {
-        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
-            .append("valueId", getValueId())
-            .append("deviceWorks", getDeviceWorks())
-            .append("assayItem", getAssayItem())
-            .append("resultValue", getResultValue())
-            .append("createTime", getCreateTime())
-            .append("updateTime", getUpdateTime())
-            .append("endTime", getEndTime())
-            .append("lowValue", getLowValue())
-            .append("highValue", getHighValue())
-            .append("beginTime", getBeginTime())
-            .toString();
-    }
 }

+ 0 - 2
ruoyi-system/src/main/java/com/ruoyi/business/service/impl/ZAssayResultServiceImpl.java

@@ -53,7 +53,6 @@ public class ZAssayResultServiceImpl implements IZAssayResultService
     @Override
     public int insertZAssayResult(ZAssayResult zAssayResult)
     {
-        zAssayResult.setCreateTime(DateUtils.getNowDate());
         return zAssayResultMapper.insertZAssayResult(zAssayResult);
     }
 
@@ -66,7 +65,6 @@ public class ZAssayResultServiceImpl implements IZAssayResultService
     @Override
     public int updateZAssayResult(ZAssayResult zAssayResult)
     {
-        zAssayResult.setUpdateTime(DateUtils.getNowDate());
         return zAssayResultMapper.updateZAssayResult(zAssayResult);
     }