40 lines
1.5 KiB
Go
40 lines
1.5 KiB
Go
|
// =================================================================================
|
||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package do
|
||
|
|
||
|
import (
|
||
|
"github.com/gogf/gf/v2/frame/g"
|
||
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
)
|
||
|
|
||
|
// Equipment is the golang structure of table equipment for DAO operations like Where/Data.
|
||
|
type Equipment struct {
|
||
|
g.Meta `orm:"table:equipment, do:true"`
|
||
|
PlantId interface{} // 所属电站ID
|
||
|
DivertorId interface{} // 分流器ID
|
||
|
DivertorName interface{} // 分流器名称
|
||
|
EquipmentName interface{} // 设备名称
|
||
|
EquipmentPn interface{} // 设备型号
|
||
|
EquipmentSn interface{} // 设备序列号
|
||
|
Id interface{} // 设备ID
|
||
|
Kwp interface{} // 总容量kwp
|
||
|
MonKwh interface{} // 当月发电量
|
||
|
NowKw interface{} // 实时功率
|
||
|
ParamDcacCode interface{} // DC/AC参数代码
|
||
|
ParamDcdcCode interface{} // DC/DC参数代码
|
||
|
PowerPlantId interface{} // 电站ID
|
||
|
PowerPlantName interface{} // 电站名称
|
||
|
RatedPower interface{} // 额定功率
|
||
|
SoftDcacCode interface{} // 软件DC/AC代码
|
||
|
SoftDcdcCode interface{} // 软件DC/DC代码
|
||
|
Status interface{} // 状态
|
||
|
SumKwh interface{} // 总发电量
|
||
|
TodayKwh interface{} // 当日发电量
|
||
|
UpdateTime *gtime.Time // 更新时间
|
||
|
UserId interface{} // 用户ID
|
||
|
UserName interface{} // 用户名
|
||
|
YearKwh interface{} // 年发电量
|
||
|
}
|