123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- import "../base.api"
- type (
-
- WxCardUserInfo {
- BaseIDInfo
-
- Wxid *string `json:"wxid,optional"`
-
- Account *string `json:"account,optional"`
-
- Avatar *string `json:"avatar,optional"`
-
- Nickname *string `json:"nickname,optional"`
-
- Remark *string `json:"remark,optional"`
-
- Phone *string `json:"phone,optional"`
-
- OpenId *string `json:"openId,optional"`
-
- UnionId *string `json:"unionId,optional"`
-
- SessionKey *string `json:"sessionKey,optional"`
-
- IsVip *string `json:"isVip,optional"`
- }
-
- WxCardUserListResp {
- BaseDataInfo
-
- Data WxCardUserListInfo `json:"data"`
- }
-
- WxCardUserListInfo {
- BaseListInfo
-
- Data []WxCardUserInfo `json:"data"`
- }
-
- WxCardUserListReq {
- PageInfo
-
- Wxid *string `json:"wxid,optional"`
-
- Account *string `json:"account,optional"`
-
- Avatar *string `json:"avatar,optional"`
-
- Nickname *string `json:"nickname,optional"`
- }
-
- WxCardUserInfoResp {
- BaseDataInfo
-
- Data WxCardUserInfo `json:"data"`
- }
- )
- @server(
- jwt: Auth
- group: wxcarduser
- middleware: Miniprogram
- )
- service Wechat {
-
- @handler updateApiWxCardUser
- post /api/user/update (WxCardUserInfo) returns (BaseMsgResp)
- }
- @server(
- jwt: Auth
- group: wxcarduser
- middleware: Authority
- )
- service Wechat {
-
- @handler createWxCardUser
- post /wx_card_user/create (WxCardUserInfo) returns (BaseMsgResp)
-
- @handler updateWxCardUser
- post /wx_card_user/update (WxCardUserInfo) returns (BaseMsgResp)
-
- @handler deleteWxCardUser
- post /wx_card_user/delete (IDsReq) returns (BaseMsgResp)
-
- @handler getWxCardUserList
- post /wx_card_user/list (WxCardUserListReq) returns (WxCardUserListResp)
-
- @handler getWxCardUserById
- post /wx_card_user (IDReq) returns (WxCardUserInfoResp)
- }
|