| 1234567891011121314151617181920212223242526 |
- package dto
- // GetMeterRatioReq 读取电表变比
- type GetMeterRatioReq struct {
- SN string `json:"sn"`
- Type string `json:"type"`
- Addr int `json:"addr"`
- Result int `json:"result"`
- SerData string `json:"serData"`
- }
- // SetMeterRatioReq 设置电表变比
- type SetMeterRatioReq struct {
- SN string `json:"sn"`
- Addr int `json:"addr"`
- Type string `json:"type"`
- SerData string `json:"serData"`
- }
- // SetMeterAddressReq 设置电表地址
- type SetMeterAddressReq struct {
- SN string `json:"sn"`
- AddrOld int `json:"addrOld"`
- AddrNew int `json:"addrNew"`
- Type string `json:"type"`
- }
|