Browse Source

update

master
jaydan 1 month ago
parent
commit
bc19862466
  1. 6
      im/v1/im.pb.go
  2. 2
      im/v1/im.proto

6
im/v1/im.pb.go

@ -793,7 +793,7 @@ type BannerUserReq struct {
unknownFields protoimpl.UnknownFields
Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
BannerTime int64 `protobuf:"varint,2,opt,name=banner_time,json=bannerTime,proto3" json:"banner_time"`
BannerTime int32 `protobuf:"varint,2,opt,name=banner_time,json=bannerTime,proto3" json:"banner_time"`
BannedReason string `protobuf:"bytes,3,opt,name=banned_reason,json=bannedReason,proto3" json:"banned_reason"`
OperateUid int64 `protobuf:"varint,4,opt,name=operate_uid,json=operateUid,proto3" json:"operate_uid"`
}
@ -837,7 +837,7 @@ func (x *BannerUserReq) GetUid() int64 {
return 0
}
func (x *BannerUserReq) GetBannerTime() int64 {
func (x *BannerUserReq) GetBannerTime() int32 {
if x != nil {
return x.BannerTime
}
@ -1175,7 +1175,7 @@ var file_im_v1_im_proto_rawDesc = []byte{
0x6e, 0x6e, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75,
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x1f, 0x0a,
0x0b, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
0x28, 0x03, 0x52, 0x0a, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x23,
0x28, 0x05, 0x52, 0x0a, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x23,
0x0a, 0x0d, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18,
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x52, 0x65, 0x61,
0x73, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x75,

2
im/v1/im.proto

@ -118,7 +118,7 @@ message QuerySingleChatResp {
message BannerUserReq {
int64 uid = 1;
int64 banner_time = 2;
int32 banner_time = 2;
string banned_reason = 3;
int64 operate_uid = 4;
}

Loading…
Cancel
Save