修改 预警/告警事务的数据生成策略
This commit is contained in:
@@ -35,8 +35,8 @@ public class LimitRate {
|
||||
/**
|
||||
* 监测点ID合格率的变电站/装置/母线/线路序号
|
||||
*/
|
||||
@TableField(value = "myindex")
|
||||
private Integer myindex;
|
||||
@TableField(value = "line_id")
|
||||
private String lineId;
|
||||
|
||||
/**
|
||||
* 总计算次数
|
||||
|
||||
@@ -72,6 +72,10 @@ public class ThsOverRunLog {
|
||||
* 越限时间(yyyy-MM-dd)
|
||||
*/
|
||||
private Date updateTime;
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createTime;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -1,18 +1,17 @@
|
||||
package com.njcn.process.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author wr
|
||||
@@ -21,7 +20,7 @@ import lombok.EqualsAndHashCode;
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@TableName("ths_warn_strategy")
|
||||
@ApiModel(value="ThsWarnStrategy对象", description="")
|
||||
@ApiModel(value = "ThsWarnStrategy对象", description = "")
|
||||
public class ThsWarnStrategy extends BaseEntity implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
@@ -47,7 +46,7 @@ public class ThsWarnStrategy extends BaseEntity implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "0.删除 1.正常")
|
||||
@TableField("State")
|
||||
@TableLogic
|
||||
@TableLogic(value = "1",delval = "0")
|
||||
private Integer state;
|
||||
|
||||
@TableField("Create_By")
|
||||
@@ -55,6 +54,11 @@ public class ThsWarnStrategy extends BaseEntity implements Serializable {
|
||||
|
||||
@TableField("Update_By")
|
||||
private String updateBy;
|
||||
/**
|
||||
* 0.通用策略 1.定值策略
|
||||
*/
|
||||
@TableField("Big_Type")
|
||||
private String bigType;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user