feat(userlive): 添加封禁结束时间字段
- 在用户封禁响应数据中添加 ban_end_time 字段
This commit is contained in:
parent
93d9f0bc2e
commit
9a29b5203c
@ -22,8 +22,9 @@ type BanResp struct {
|
||||
Code int `json:"code"`
|
||||
Msg string `json:"msg"`
|
||||
Data struct {
|
||||
Ban bool `json:"ban"` // 是否要禁止
|
||||
BanRuleId int64 `json:"ban_rule_id"` // 命中的封禁规则id
|
||||
Ban bool `json:"ban"` // 是否要禁止
|
||||
BanRuleId int64 `json:"ban_rule_id"` // 命中的封禁规则id
|
||||
BanEndTime string `json:"ban_end_time"` // 封禁结束时间
|
||||
} `json:"data"`
|
||||
}
|
||||
type BanReqParam struct {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user