Commit d2438050 authored by tangwei's avatar tangwei

解决冲突

parents 556e0807 7b82037b
package com.yeejoin.amos.boot.module.jxiop.biz.entity; package com.yeejoin.amos.boot.module.jxiop.biz.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.yeejoin.amos.boot.biz.common.entity.BaseEntity; import com.yeejoin.amos.boot.biz.common.entity.BaseEntity;
import lombok.Data; import lombok.Data;
...@@ -27,7 +29,7 @@ public class IdxBizPvPointVarCentralValue{ ...@@ -27,7 +29,7 @@ public class IdxBizPvPointVarCentralValue{
/** /**
* *
*/ */
@TableField("SEQUENCE_NBR") @TableId(value = "SEQUENCE_NBR" ,type = IdType.UUID)
private String sequenceNbr; private String sequenceNbr;
/** /**
......
...@@ -71,13 +71,13 @@ public class IdxBizPvPointVarCorrelation{ ...@@ -71,13 +71,13 @@ public class IdxBizPvPointVarCorrelation{
* *
*/ */
@TableField("ANALYSIS_POINT_ID") @TableField("ANALYSIS_POINT_ID")
private Integer analysisPointId; private String analysisPointId;
/** /**
* *
*/ */
@TableField("PROCESS_POINT_ID") @TableField("PROCESS_POINT_ID")
private Integer processPointId; private String processPointId;
/** /**
* 片区 * 片区
...@@ -131,7 +131,7 @@ public class IdxBizPvPointVarCorrelation{ ...@@ -131,7 +131,7 @@ public class IdxBizPvPointVarCorrelation{
* *
*/ */
@TableField("PROCESS_INDEX_ADDRESS") @TableField("PROCESS_INDEX_ADDRESS")
private Integer processIndexAddress; private String processIndexAddress;
/** /**
* 设备名称 * 设备名称
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment