Files
jb_syncdata/src/main/java/com/njcn/jbsyncdata/pojo/DistributionAreaExcel.java
2023-11-24 15:02:35 +08:00

59 lines
1.1 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.njcn.jbsyncdata.pojo;
import cn.hutool.core.util.StrUtil;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import lombok.Data;
import java.io.Serializable;
/**
* <p>
* 台区信息
* </p>
*
* @author wr
* @since 2023-11-20
*/
@Data
@ColumnWidth(30)
public class DistributionAreaExcel implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 台区编号
*/
@ExcelProperty(value = "台区编号")
private String id;
/**
* 变压器名称
*/
@ExcelProperty("变压器名称")
private String name;
/**
* PMS资源id同源
*/
@ExcelProperty("PMS资源id同源")
private String pmsID;
/**
* 监测线路名称
*/
@ExcelProperty("所属线路")
private String lineName;
@ExcelProperty(value = "公司名称")
private String orgName;
@ExcelProperty(value = "供电所")
private String powerSupply;
@ExcelProperty(value = "无数据的指标")
private String types;
}