fix: 1.oracle切换至pgsql之后 解决qc谱入库失败问题
This commit is contained in:
parent
168aff2454
commit
d74dca784c
|
@ -70,16 +70,16 @@ public class MybatisInterceptor implements Interceptor {
|
||||||
field.setAccessible(false);
|
field.setAccessible(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ("moddate".equalsIgnoreCase(field.getName())) {
|
// if ("moddate".equalsIgnoreCase(field.getName())) {
|
||||||
field.setAccessible(true);
|
// field.setAccessible(true);
|
||||||
Object localCreateDate = field.get(parameter);
|
// Object localCreateDate = field.get(parameter);
|
||||||
field.setAccessible(false);
|
// field.setAccessible(false);
|
||||||
if (localCreateDate == null || "".equals(localCreateDate)) {
|
// if (localCreateDate == null || "".equals(localCreateDate)) {
|
||||||
field.setAccessible(true);
|
// field.setAccessible(true);
|
||||||
field.set(parameter, new Date());
|
// field.set(parameter, new Date());
|
||||||
field.setAccessible(false);
|
// field.setAccessible(false);
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
//注入部门编码
|
//注入部门编码
|
||||||
if ("sysOrgCode".equals(field.getName())) {
|
if ("sysOrgCode".equals(field.getName())) {
|
||||||
field.setAccessible(true);
|
field.setAccessible(true);
|
||||||
|
|
|
@ -10,6 +10,7 @@ import java.util.Date;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@TableName("ORIGINAL.GARDS_ALERT_DATA")
|
@TableName("ORIGINAL.GARDS_ALERT_DATA")
|
||||||
|
@KeySequence("original.gards_alert_data_seq")
|
||||||
public class GardsAlertData implements Serializable {
|
public class GardsAlertData implements Serializable {
|
||||||
|
|
||||||
@TableField(value = "STATION_ID")
|
@TableField(value = "STATION_ID")
|
||||||
|
|
|
@ -11,6 +11,7 @@ import java.util.Date;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@TableName(value = "ORIGINAL.GARDS_DOS_DATA")
|
@TableName(value = "ORIGINAL.GARDS_DOS_DATA")
|
||||||
|
@KeySequence("original.gards_dos_data_seq")
|
||||||
public class GardsDOSData implements Serializable {
|
public class GardsDOSData implements Serializable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
package org.jeecg.modules.base.entity.original;
|
package org.jeecg.modules.base.entity.original;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.*;
|
||||||
import com.baomidou.mybatisplus.annotation.TableField;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
@ -13,6 +10,7 @@ import java.util.Date;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@TableName("ORIGINAL.GARDS_GPS_DATA")
|
@TableName("ORIGINAL.GARDS_GPS_DATA")
|
||||||
|
@KeySequence("original.gards_gps_data_seq")
|
||||||
public class GardsGPSData implements Serializable {
|
public class GardsGPSData implements Serializable {
|
||||||
|
|
||||||
@TableField(value = "STATION_ID")
|
@TableField(value = "STATION_ID")
|
||||||
|
|
|
@ -11,6 +11,7 @@ import java.util.Date;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@TableName(value = "ORIGINAL.GARDS_MET_DATA")
|
@TableName(value = "ORIGINAL.GARDS_MET_DATA")
|
||||||
|
@KeySequence("original.gards_met_data_seq")
|
||||||
public class GardsMetData implements Serializable {
|
public class GardsMetData implements Serializable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -10,6 +10,7 @@ import java.util.Date;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@TableName(value = "ORIGINAL.GARDS_SOH_DATA")
|
@TableName(value = "ORIGINAL.GARDS_SOH_DATA")
|
||||||
|
@KeySequence("original.gards_soh_data_seq")
|
||||||
public class GardsSohData implements Serializable {
|
public class GardsSohData implements Serializable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user