同步监测点上级变电站信息

This commit is contained in:
xy
2024-08-05 08:43:05 +08:00
parent af6f35dfad
commit ef03549ebb
11 changed files with 176 additions and 9 deletions

View File

@@ -0,0 +1,105 @@
package com.njcn.oracle.bo.po;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
/**
* 线路参数附加定义表
* */
@Data
@TableName("PQ_LINEDETAIL")
public class LineDetail {
@TableField("LINE_INDEX")
private Long lineIndex;
@TableField("SUB_INDEX")
private Long subIndex;
@TableField("GD_INDEX")
private Long gdIndex;
@TableField("LINE_NAME")
private String lineName;
//接线类型
@TableField("PTTYPE")
private Integer ptType;
//上次更新时间
@TableField("LAST_TIME")
private Date lastTime;
//测量间隔
@TableField("TINTERVAL")
private Integer tinterval;
//干扰源类型终
@TableField("LOADTYPE")
private String loadType;
//行业类型
@TableField("BUSINESSTYPE")
private String businessType;
//监测点性质
@TableField("POWERID")
private Integer powerId;
//备注
@TableField("REMARK")
private String remark;
//国网谐波监测平台监测点号
@TableField("MONITOR_ID")
private String monitorId;
@TableField("OBJNAME")
private String objName; //监测点对象名称
//统计类型
@TableField("STATFLAG")
private Integer statFlag;
//电网侧变电站名称
@TableField("POWER_SUBSTATION_NAME")
private String powerSubstationName;
//分类等级 内容为Ⅰ、Ⅱ、Ⅲ、Ⅳ
@TableField("CLASSIFICATION_GRADE")
private String calssificationGrade;
//上级电站
@TableField("SUPERIORS_SUBSTATION")
private String superiorsSubstation;
//挂接线路
@TableField("HANG_LINE")
private String hangLine;
//监测点拥有者
@TableField("OWNER")
private String owner;
//拥有者职务
@TableField("OWNER_DUTY")
private String ownerDuty;
//拥有者联系方式
@TableField("OWNER_TEL")
private String ownerTel;
//接线图
@TableField("WIRING_DIAGRAM")
private String wiringDiagram;
//是否并网点
@TableField("IS_GRID_POINT")
private Integer isGridPoint;
}

View File

@@ -0,0 +1,16 @@
package com.njcn.oracle.mapper;
import com.njcn.oracle.bo.po.LineDetail;
import com.njcn.oracle.mybatis.mapper.BatchBaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author hongawen
* @since 2023-12-28
*/
public interface LineDetailMapper extends BatchBaseMapper<LineDetail> {
}

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.njcn.oracle.mapper.LineDetailMapper">
</mapper>