Commit e89f6290 authored by chenzhao's avatar chenzhao

修改代码

parent 78411a31
......@@ -2,7 +2,8 @@ package com.yeejoin.amos.boot.module.jxiop.biz.tdMapper2;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yeejoin.amos.boot.module.jxiop.biz.tdengine.FanWarningRecord;
import com.yeejoin.amos.boot.module.jxiop.biz.tdengine.PvWarningRecord;
public interface PvWaringRecordMapper extends BaseMapper<FanWarningRecord> {
public interface PvWaringRecordMapper extends BaseMapper<PvWarningRecord> {
}
package com.yeejoin.amos.boot.module.jxiop.biz.tdengine;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
@Data
@TableName(value = "", autoResultMap = true)
public class PvWarningRecord {
private Long ts;
private String record;
private Date recDate;
private String recUserId;
private String instanceId;
private String status;
private String disposotionState;
private String healthIndexSeq;
private String analysisPointId;
private String warningName;
private String arae;
private String station;
private String subarray;
private String manufacturer;
private String deviceType;
private String gatewayId;
private String indexAddress;
private String equipmentName;
private String CONTENT;
private String pointName;
private String healthLevel;
private Date disposotionDate;
private String kks;
private String warningPeriod;
}
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