Commit 1ed5674a authored by 鲁鸿波's avatar 鲁鸿波

历史状态字段调整及漏缆监测历史状态的导出

parent a01a09c3
package com.hongxinhui.entity.excel;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import org.apache.ibatis.annotations.ConstructorArgs;
import java.util.Date;
/**
* @ClassName HmsLeakycableMonitorStatus
* @Description TODO
* @Author lhb
* @Date 2022/2/15 16:37
* @Version 1.0
**/
@Data
@AllArgsConstructor
public class HmsLeakycableMonitorStatusPo {
@ExcelProperty("基站名称")
private String bsName;
@ExcelProperty("告警对象")
private String alarmName;
@ExcelProperty("告警信息")
private String contentRed;
@ExcelProperty("告警信息")
private String contentGreen;
@ExcelProperty("告警信息")
private String contentBlack;
@ExcelProperty("上传日期")
private Date uploadTime;
}
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