1.冀北台账树逻辑调整

2.冀北业务中台管理
This commit is contained in:
wr
2024-09-11 16:26:00 +08:00
parent b07ee843f0
commit b6fdd89192
14 changed files with 500 additions and 39 deletions

View File

@@ -0,0 +1,116 @@
package com.njcn.device.pq.pojo.po;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.njcn.db.bo.BaseEntity;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import lombok.Getter;
import lombok.Setter;
/**
* <p>
*
* </p>
*
* @author wr
* @since 2024-08-07
*/
@Getter
@Setter
@TableName("pq_ywzt_substation")
public class YwZtSubstation{
private static final long serialVersionUID = 1L;
/**
* 变电站序号
*/
@TableId
private String id;
/**
* 数据类型zf01:变电站 zf05:电厂
*/
private String type;
/**
* 所属地市
*/
private String orgId;
/**
* 运维单位
*/
private String operationName;
/**
* 电站名称
*/
private String name;
/**
* 电压等级Id字典表
*/
private String scale;
/**
* 电压等级名称
*/
private String scaleName;
/**
* 维护班组
*/
private String maintenanceName;
/**
* 设备状态
*/
private String runStatus;
/**
* 设备编码
*/
private String deviceCoding;
/**
* 投运日期
*/
private LocalDateTime runTime;
/**
* 经度
*/
private BigDecimal lng;
/**
* 纬度
*/
private BigDecimal lat;
/**
* 创建用户
*/
private String createBy;
/**
* 创建时间
*/
private LocalDateTime createTime;
/**
* 更新用户
*/
private String updateBy;
/**
* 更新时间
*/
private LocalDateTime updateTime;
}