1234567891011121314151617 |
- package entity
- type MsgGroup struct {
- Name string `ch:"name"`
- GroupId int32 `ch:"group_id"`
- Switch string `ch:"switch"`
- Img string `ch:"img"`
- Sequence int32 `ch:"sequence"`
- Msg_type int32 `ch:"msg_type"`
- }
- type GroupClass struct {
- Switch string `ch:"switch"`
- Wxtmpl_Id string `ch:"wxtmpl_Id"`
- Msg_type int32 `ch:"msg_type"`
- Msg_name string `ch:"msg_name"`
- Wxtmp_value string `ch:"wxtmp_value"`
- }
|