mirror of
https://github.com/MickMake/GoSungrow.git
synced 2025-06-29 18:20:33 +02:00
61 lines
2.1 KiB
Go
61 lines
2.1 KiB
Go
package getDeviceTechnical
|
|
|
|
import (
|
|
"GoSungrow/iSolarCloud/api"
|
|
"GoSungrow/iSolarCloud/api/GoStruct"
|
|
"GoSungrow/iSolarCloud/api/GoStruct/valueTypes"
|
|
|
|
"fmt"
|
|
)
|
|
|
|
const Url = "/v1/devService/getDeviceTechnical"
|
|
const Disabled = false
|
|
|
|
type RequestData struct {
|
|
}
|
|
|
|
func (rd RequestData) IsValid() error {
|
|
return GoStruct.VerifyOptionsRequired(rd)
|
|
}
|
|
|
|
func (rd RequestData) Help() string {
|
|
ret := fmt.Sprintf("")
|
|
return ret
|
|
}
|
|
|
|
type ResultData struct {
|
|
DeviceTypeList []struct {
|
|
TypeId valueTypes.Integer `json:"type_id"`
|
|
TypeName valueTypes.String `json:"type_name"`
|
|
} `json:"deviceTypeList" PointId:"device_type_list" PointIdReplace:"true" DataTable:"true" DataTableSortOn:"TypeCode"`
|
|
PowerDeviceTechnicalMap struct {
|
|
ComType valueTypes.String `json:"com_type"`
|
|
DeviceModel valueTypes.String `json:"device_model"`
|
|
DeviceModelCode valueTypes.String `json:"device_model_code"`
|
|
ModelId valueTypes.Integer `json:"model_id"`
|
|
TechCode valueTypes.String `json:"tech_code"`
|
|
TechContent valueTypes.String `json:"tech_content"`
|
|
TechContentTransId valueTypes.Integer `json:"tech_content_trans_id"`
|
|
TechCreateTime valueTypes.DateTime `json:"tech_createtime" PointId:"tech_create_time" PointNameDateFormat:"2006/01/02 15:04:05"`
|
|
TechCreator valueTypes.String `json:"tech_creator"`
|
|
TechDescription interface{} `json:"tech_description"`
|
|
TechId valueTypes.Integer `json:"tech_id"`
|
|
TechModifier interface{} `json:"tech_modifier"`
|
|
TechModifyTime valueTypes.DateTime `json:"tech_modifytime" PointId:"tech_modify_time" PointNameDateFormat:"2006/01/02 15:04:05"`
|
|
TechName valueTypes.String `json:"tech_name"`
|
|
TypeId valueTypes.Integer `json:"type_id"`
|
|
TypeName valueTypes.String `json:"type_name"`
|
|
} `json:"powerDeviceTechnicalMap" PointId:"power_device_technical_map"`
|
|
}
|
|
|
|
func (e *ResultData) IsValid() error {
|
|
var err error
|
|
return err
|
|
}
|
|
|
|
func (e *EndPoint) GetData() api.DataMap {
|
|
entries := api.NewDataMap()
|
|
entries.StructToDataMap(*e, "", GoStruct.EndPointPath{})
|
|
return entries
|
|
}
|