Commit a27d92f2 authored by tangwei's avatar tangwei

新增及实体类mapper

parent 5df79d19
package com.yeejoin.amos.api.householdapi.face.orm.houseapi.entity.tdeingine;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
/**
* @description:
* @author: tw
* @createDate: 2024/3/7
*/
//电站
@Data
@TableName(value = "sofar_station_list" ,autoResultMap = true)
public class SofarStationList {
private Long createdTime;
private Integer batterySoc;//电池容量
private Long createDate ;//创建时间
private Integer generationPower ;// 发电功率
private String gridInterconnectionType ;// 并网类型,如:DISTRIBUTED_FULLY
private Long id ;//电站id
private Integer installedCapacity ;// 装机容量
private Long lastUpdateTime ;//电站的最后一条数据更新时间
private String locationAddress ;// 详细地址
private Integer locationLat ;// 纬度
private Integer locationLng ;// 经度
private String name ;// 电站名称
private String networkStatus ;// 通信状态
private Integer regionLevel1 ;// 行政区1
private Integer regionLevel2 ;// 行政区2
private Integer regionLevel3 ;// 行政区3
private Integer regionLevel4 ;// 行政区4
private Integer regionLevel5 ;// 行政区5
private String stationImage ;// 电站封面
private Long startOperatingTime ;//开始运行时间
private String type ;// 电站类型,如:HOUSE_ROOF
}
package com.yeejoin.amos.api.householdapi.face.orm.mapper.tdengine;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yeejoin.amos.api.householdapi.face.orm.houseapi.entity.tdeingine.SofarStationList;
/**
* @description:
* @author: tw
* @createDate: 2024/3/7
*/
public interface SofarStationListMapper extends BaseMapper<SofarStationList> {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment