go-common/app/interface/main/app-view/model/elec/elec.go
2019-04-22 18:49:16 +08:00

15 lines
449 B
Go

package elec
import "encoding/json"
type Info struct {
Start int64 `json:"start,omitempty"`
Show bool `json:"show"`
Total int `json:"total,omitempty"`
Count int `json:"count,omitempty"`
State int `json:"state,omitempty"`
List json.RawMessage `json:"list,omitempty"`
User json.RawMessage `json:"user,omitempty"`
ElecSet json.RawMessage `json:"elec_set,omitempty"`
}