1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- import "../base.api"
- type (
-
- AgentInfo {
- BaseIDInfo
-
- Name *string `json:"name,optional"`
-
- Role *string `json:"role,optional"`
-
- Status *int `json:"status,optional"`
-
- Background *string `json:"background,optional"`
-
- Examples *string `json:"examples,optional"`
- }
-
- AgentListResp {
- BaseDataInfo
-
- Data AgentListInfo `json:"data"`
- }
-
- AgentListInfo {
- BaseListInfo
-
- Data []AgentInfo `json:"data"`
- }
-
- AgentListReq {
- PageInfo
-
- Name *string `json:"name,optional"`
-
- Role *string `json:"role,optional"`
-
- Background *string `json:"background,optional"`
-
- Status *int `json:"status,optional"`
- }
-
- AgentInfoResp {
- BaseDataInfo
-
- Data AgentInfo `json:"data"`
- }
- )
- @server(
- jwt: Auth
- group: agent
- middleware: Authority
- )
- service Wechat {
-
- @handler createAgent
- post /agent/create (AgentInfo) returns (BaseMsgResp)
-
- @handler updateAgent
- post /agent/update (AgentInfo) returns (BaseMsgResp)
-
- @handler deleteAgent
- post /agent/delete (IDsReq) returns (BaseMsgResp)
-
- @handler getAgentList
- post /agent/list (AgentListReq) returns (AgentListResp)
-
- @handler getAgentById
- post /agent (IDReq) returns (AgentInfoResp)
- }
|