59 lines
1.1 KiB
Java
59 lines
1.1 KiB
Java
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;
|
||
|
||
}
|