| 12345678910111213141516171819202122232425262728293031323334353637 |
- package oilrtx
- //"time"
- type RtxMsg struct {
- Msg string `json:"msg"`
- Receiver string `json:"receiver"`
- }
- type RtxLogin struct {
- Username string `json:"username"`
- Password string `json:"password"`
- UserDomain string `json:"userDomain"`
- }
- type RtxRespToken struct {
- code string `json:"code"`
- message string `json:"message"`
- token string `json:"token"`
- }
- type RtxOrganize struct {
- Id string `json:"code"`
- OrgCode string `json:"message"`
- OrgName string `json:"token"`
- OrgShortName string `json:"orgShortName"`
- ParentId string `json:"parentId"`
- IsInValid string `json:"ISINVALID"`
- Remark string `json:"remark"`
- Children []RtxOrganize `json:"children"`
- }
- type RtxOrganizeItems struct {
- Items []RtxOrganize `json:"items"`
- }
|