1.台区台账模板导入(唐山/张家口)
2.获取台区遥测数据接口编写
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
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 errorMessage;
|
||||
|
||||
/**
|
||||
* 台区编号
|
||||
*/
|
||||
@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;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user