1. 开发邀请关系统计接口

2. 修复部分bug
This commit is contained in:
徐俊杰 2023-03-14 18:45:35 +08:00
parent 5616470c14
commit 943ccb7c5d
7 changed files with 738 additions and 111 deletions

View File

@ -20,6 +20,13 @@ type ArtistInfoUserProvider struct {
artistInfoLogic *logic.ArtistInfoUser artistInfoLogic *logic.ArtistInfoUser
} }
func (a *ArtistInfoUserProvider) GetInviteStaticList(ctx context.Context, request *artistInfoUser.GetInviteStaticListRequest) (*artistInfoUser.GetInviteStaticListResponse, error) {
return a.artistInfoLogic.GetInviteStaticList(request)
}
func (a *ArtistInfoUserProvider) GetInviterUserList(ctx context.Context, request *artistInfoUser.GetInviterUserListRequest) (*artistInfoUser.GetInvitedUserListResponse, error) {
return a.artistInfoLogic.GetInviterUserList(request)
}
func (a *ArtistInfoUserProvider) GetInvitedUserList(ctx context.Context, request *artistInfoUser.GetInvitedUserListRequest) (*artistInfoUser.GetInvitedUserListResponse, error) { func (a *ArtistInfoUserProvider) GetInvitedUserList(ctx context.Context, request *artistInfoUser.GetInvitedUserListRequest) (*artistInfoUser.GetInvitedUserListResponse, error) {
return a.artistInfoLogic.GetInvitedUserList(request) return a.artistInfoLogic.GetInvitedUserList(request)
} }

View File

@ -881,6 +881,61 @@ func CheckUserLockByArtistUid(artistUid string) (err error) {
} }
return nil return nil
} }
// GetInviterInfo 查询邀请人信息
// invitedCode:受邀请人的邀请码
func GetInviterInfo(inviterCode string) (result account.AccountInfo) {
//查找邀请关系
var inviteRelation = model.Invite{}
err := db.DB.Model(model.Invite{}).Where("invite_code = ?", inviterCode).Find(&inviteRelation).Error
if err != nil {
fmt.Println("\n GetInviterInfo 查询邀请人信息出错", err.Error())
return
}
//查询邀请人信息
res, err := service.AccountProvider.ListByIDs(context.Background(), &account.ListByIDsRequest{
Page: 1,
PageSize: 1,
InvitationCode: []string{inviteRelation.InviteCode},
})
if err != nil {
fmt.Println("\n GetInviterInfo 查询邀请人信息出错 service.AccountProvider.ListByIDs Error", err.Error())
return
}
if res != nil && len(res.Data) > 0 {
result = account.AccountInfo{
ID: res.Data[0].ID,
Account: res.Data[0].Account,
NickName: res.Data[0].NickName,
Type: res.Data[0].Type,
TelNum: res.Data[0].TelNum,
Status: res.Data[0].Status,
Avatar: res.Data[0].Avatar,
CreateAt: res.Data[0].CreateAt,
RealNameID: res.Data[0].RealNameID,
RealName: res.Data[0].RealName,
IDNum: res.Data[0].IDNum,
MnemonicWords: res.Data[0].MnemonicWords,
IsNeedChange: res.Data[0].IsNeedChange,
EnterDate: res.Data[0].EnterDate,
WorkYear: res.Data[0].WorkYear,
Domain: res.Data[0].Domain,
Extend: res.Data[0].Extend,
JobNum: res.Data[0].JobNum,
BirthDate: res.Data[0].BirthDate,
Age: res.Data[0].Age,
Sex: res.Data[0].Sex,
Title: res.Data[0].Title,
Departments: res.Data[0].Departments,
Ip: res.Data[0].Ip,
LoginDate: res.Data[0].LoginDate,
InvitationCode: res.Data[0].InvitationCode,
}
return
}
return
}
func GetInvitedUserList(in *artistInfoUser.GetInvitedUserListRequest) (res *artistInfoUser.GetInvitedUserListResponse, err error) { func GetInvitedUserList(in *artistInfoUser.GetInvitedUserListRequest) (res *artistInfoUser.GetInvitedUserListResponse, err error) {
res = &artistInfoUser.GetInvitedUserListResponse{ res = &artistInfoUser.GetInvitedUserListResponse{
Data: []*artistInfoUser.InvitedUser{}, Data: []*artistInfoUser.InvitedUser{},
@ -950,56 +1005,116 @@ func GetInvitedUserList(in *artistInfoUser.GetInvitedUserListRequest) (res *arti
return return
} }
// GetInviterInfo 查询邀请人信息 // 通过受邀请人的邀请码,查询他的邀请人列表
// invitedCode:受邀请人的邀请码 func GetInviterUserList(in *artistInfoUser.GetInviterUserListRequest) (res *artistInfoUser.GetInvitedUserListResponse, err error) {
func GetInviterInfo(invitedCode string) (result account.AccountInfo) { res = &artistInfoUser.GetInvitedUserListResponse{
//查找邀请关系 Data: []*artistInfoUser.InvitedUser{},
var inviteRelation = model.Invite{} Page: &artistInfoUser.UserCommonPageInfo{
err := db.DB.Model(model.Invite{}).Where("invited_code = ?", invitedCode).Find(&inviteRelation).Error Page: int32(in.Page),
if err != nil { PageSize: int32(in.PageSize),
fmt.Println("\n GetInviterInfo 查询邀请人信息出错", err.Error()) },
return
} }
//查询邀请人信息 var inviteCodes []int64
res, err := service.AccountProvider.ListByIDs(context.Background(), &account.ListByIDsRequest{ db.DB.Model(model.Invite{}).Where("invited_code = ?", in.InvitedCode).Pluck("invite_code", &inviteCodes)
var invitedList []model.User
orm := db.DB.Model(model.User{}).Preload("RealNameInfo").Where("invited_code in ?", inviteCodes) //查询邀请人
if err = orm.Count(&res.Page.Total).Scopes(db.Pagination(in.Page, in.PageSize)).Find(&invitedList).Error; err != nil {
return nil, err
}
//查询画家基本信息
var artistProfileList = &artist.ArtistListResponse{Data: []*artist.ProfileRequest{}}
var artistUids = []string{}
for _, v := range invitedList {
if v.MgmtArtistUid != "" {
artistUids = append(artistUids, v.MgmtArtistUid)
}
}
artistProfileList, err = service.GrpcArtistImpl.ArtistList(context.Background(), &artist.ArtistListRequest{
Page: 1, Page: 1,
PageSize: 1, PageSize: int32(len(artistUids)),
InvitationCode: []string{inviteRelation.InviteCode}, Uids: artistUids,
Gender: -1,
}) })
if err != nil { if err != nil {
fmt.Println("\n GetInviterInfo 查询邀请人信息出错 service.AccountProvider.ListByIDs Error", err.Error()) return nil, err
return
} }
if res != nil && len(res.Data) > 0 { for _, v := range invitedList {
result = account.AccountInfo{ var (
ID: res.Data[0].ID, realName string
Account: res.Data[0].Account, sex string
NickName: res.Data[0].NickName, age int64
Type: res.Data[0].Type, penName string
TelNum: res.Data[0].TelNum, stageName string
Status: res.Data[0].Status, )
Avatar: res.Data[0].Avatar, if v.RealNameInfo != nil {
CreateAt: res.Data[0].CreateAt, realName = v.RealNameInfo.Name
RealNameID: res.Data[0].RealNameID, sex = string(v.RealNameInfo.Sex)
RealName: res.Data[0].RealName, age = int64(v.RealNameInfo.Age)
IDNum: res.Data[0].IDNum, }
MnemonicWords: res.Data[0].MnemonicWords, for _, artistProfile := range artistProfileList.Data {
IsNeedChange: res.Data[0].IsNeedChange, if v.MgmtArtistUid == artistProfile.Uid {
EnterDate: res.Data[0].EnterDate, penName = artistProfile.PenName
WorkYear: res.Data[0].WorkYear, stageName = artistProfile.StageName
Domain: res.Data[0].Domain, }
Extend: res.Data[0].Extend, }
JobNum: res.Data[0].JobNum, res.Data = append(res.Data, &artistInfoUser.InvitedUser{
BirthDate: res.Data[0].BirthDate, UserId: v.ID,
Age: res.Data[0].Age, AccId: v.MgmtAccId,
Sex: res.Data[0].Sex, ArtistUid: v.MgmtArtistUid,
Title: res.Data[0].Title, TelNum: v.TelNum,
Departments: res.Data[0].Departments, InviteCode: v.InviteCode,
Ip: res.Data[0].Ip, Account: v.Account,
LoginDate: res.Data[0].LoginDate, Photo: v.Photo,
InvitationCode: res.Data[0].InvitationCode, IsRealName: v.IsRealName,
FddState: v.FddState,
RealName: realName,
Sex: sex,
Age: age,
CreatedAt: stime.TimeToString(v.CreatedAt, stime.Format_Normal_YMDhms),
PenName: penName,
StageName: stageName,
})
} }
return return
} }
// 邀请关系数据统计
type inviteStatic struct {
RealName string `gorm:"column:real_name"`
TelNum string `gorm:"column:tel_num"`
InviteCode string `gorm:"column:invite_code"`
InvitePicUrl string `gorm:"-"`
InvitedCount int64 `gorm:"column:invited_count"`
}
func GetInviteStaticList(in *artistInfoUser.GetInviteStaticListRequest) (res *artistInfoUser.GetInviteStaticListResponse, err error) {
res = &artistInfoUser.GetInviteStaticListResponse{Data: []*artistInfoUser.GetInviteStaticListData{}, Page: &artistInfoUser.UserCommonPageInfo{
Page: int32(in.Page),
PageSize: int32(in.PageSize),
}}
orm := db.DB.
Select("ui.invite_code,max(rn.name) real_name, max(su.tel_num) tel_num,max(su.mgmt_artist_uid) artist_uid,count(ui.invited_code) invited_count ").
Table(model.UserInvited{}.TableName() + " AS ui").
Joins(fmt.Sprintf("LEFT JOIN %v su ON su.invited_code = ui.invite_code", model.User{}.TableName())).
Joins((fmt.Sprintf("LEFT JOIN %v rn ON rn.id = su.real_name_id", model.RealName{}.TableName()))).
Where("su.deleted_at=0").
Group("ui.invite_code")
if in.KeyWords != "" {
orm = orm.Where("rn.name LIKE '%%?%%' OR su.tel_num LIKE '%%?%%' OR su.invited_code LIKE '%%?%%' ", in.KeyWords, in.KeyWords, in.KeyWords)
}
var datas []inviteStatic
err = orm.Count(&res.Page.Total).Scopes(db.Pagination(in.Page, in.PageSize)).Find(&datas).Error
if len(datas) > 0 {
for i, v := range datas {
res.Data = append(res.Data, &artistInfoUser.GetInviteStaticListData{
Idx: int64(i + 1),
RealName: v.RealName,
TelNum: v.TelNum,
InviteCode: v.InviteCode,
InvitePicUrl: fmt.Sprintf("https://cdn.fontree.cn/artistmgmt/static/qrcode/%v.png", v.InviteCode),
InvitedCount: v.InvitedCount,
})
}
}
return return
} }

View File

@ -191,7 +191,17 @@ func (a *ArtistInfoUser) GetPreSaveArtistInfo(in *artistInfoUser.GetPreSaveArtis
res, err = dao.GetPreSaveArtistInfo(in) res, err = dao.GetPreSaveArtistInfo(in)
return return
} }
func (a *ArtistInfoUser) GetInvitedUserList(in *artistInfoUser.GetInvitedUserListRequest) (res *artistInfoUser.GetInvitedUserListResponse, err error) { func (a *ArtistInfoUser) GetInvitedUserList(in *artistInfoUser.GetInvitedUserListRequest) (res *artistInfoUser.GetInvitedUserListResponse, err error) {
res, err = dao.GetInvitedUserList(in) res, err = dao.GetInvitedUserList(in)
return return
} }
func (a *ArtistInfoUser) GetInviterUserList(in *artistInfoUser.GetInviterUserListRequest) (res *artistInfoUser.GetInvitedUserListResponse, err error) {
res, err = dao.GetInviterUserList(in)
return
}
func (a *ArtistInfoUser) GetInviteStaticList(in *artistInfoUser.GetInviteStaticListRequest) (res *artistInfoUser.GetInviteStaticListResponse, err error) {
res, err = dao.GetInviteStaticList(in)
return
}

View File

@ -9,3 +9,7 @@ type UserInvited struct {
InvitedUserId int32 `gorm:"column:invited_user_id;type:int;not null;comment:受邀请人画家宝用户id"` InvitedUserId int32 `gorm:"column:invited_user_id;type:int;not null;comment:受邀请人画家宝用户id"`
Count int32 `gorm:"column:count;type:int;default:1;邀请次数统计"` Count int32 `gorm:"column:count;type:int;default:1;邀请次数统计"`
} }
func (UserInvited) TableName() string {
return "user_invited"
}

View File

@ -2953,9 +2953,9 @@ type BindInviteInvitedAccountRequest struct {
sizeCache protoimpl.SizeCache sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields unknownFields protoimpl.UnknownFields
InvitedUserId int32 `protobuf:"varint,2,opt,name=invitedUserId,proto3" json:"invitedUserId,omitempty"` // 受邀请人的画家宝用户id InvitedUserId int32 `protobuf:"varint,1,opt,name=invitedUserId,proto3" json:"invitedUserId,omitempty"` // 受邀请人的画家宝用户id
InviteCode string `protobuf:"bytes,3,opt,name=inviteCode,proto3" json:"inviteCode,omitempty"` // 邀请人的邀请码 InviteCode string `protobuf:"bytes,2,opt,name=inviteCode,proto3" json:"inviteCode,omitempty"` // 邀请人的邀请码
InvitedCode string `protobuf:"bytes,4,opt,name=invitedCode,proto3" json:"invitedCode,omitempty"` // 受邀请人的邀请码 InvitedCode string `protobuf:"bytes,3,opt,name=invitedCode,proto3" json:"invitedCode,omitempty"` // 受邀请人的邀请码
} }
func (x *BindInviteInvitedAccountRequest) Reset() { func (x *BindInviteInvitedAccountRequest) Reset() {
@ -4691,6 +4691,274 @@ func (x *GetInvitedUserListResponse) GetPage() *UserCommonPageInfo {
return nil return nil
} }
type GetInviterUserListRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
InvitedCode string `protobuf:"bytes,1,opt,name=invitedCode,proto3" json:"invitedCode,omitempty"` //受邀请者的邀请码
Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page,omitempty"`
PageSize int64 `protobuf:"varint,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
}
func (x *GetInviterUserListRequest) Reset() {
*x = GetInviterUserListRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artistinfoUser_proto_msgTypes[53]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetInviterUserListRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetInviterUserListRequest) ProtoMessage() {}
func (x *GetInviterUserListRequest) ProtoReflect() protoreflect.Message {
mi := &file_pb_artistinfoUser_proto_msgTypes[53]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetInviterUserListRequest.ProtoReflect.Descriptor instead.
func (*GetInviterUserListRequest) Descriptor() ([]byte, []int) {
return file_pb_artistinfoUser_proto_rawDescGZIP(), []int{53}
}
func (x *GetInviterUserListRequest) GetInvitedCode() string {
if x != nil {
return x.InvitedCode
}
return ""
}
func (x *GetInviterUserListRequest) GetPage() int64 {
if x != nil {
return x.Page
}
return 0
}
func (x *GetInviterUserListRequest) GetPageSize() int64 {
if x != nil {
return x.PageSize
}
return 0
}
type GetInviteStaticListRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
KeyWords string `protobuf:"bytes,3,opt,name=KeyWords,proto3" json:"KeyWords,omitempty"` //关键字 受邀请者的邀请码 OR 受邀请者的姓名 OR 受邀请者的手机号码
}
func (x *GetInviteStaticListRequest) Reset() {
*x = GetInviteStaticListRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artistinfoUser_proto_msgTypes[54]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetInviteStaticListRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetInviteStaticListRequest) ProtoMessage() {}
func (x *GetInviteStaticListRequest) ProtoReflect() protoreflect.Message {
mi := &file_pb_artistinfoUser_proto_msgTypes[54]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetInviteStaticListRequest.ProtoReflect.Descriptor instead.
func (*GetInviteStaticListRequest) Descriptor() ([]byte, []int) {
return file_pb_artistinfoUser_proto_rawDescGZIP(), []int{54}
}
func (x *GetInviteStaticListRequest) GetPage() int64 {
if x != nil {
return x.Page
}
return 0
}
func (x *GetInviteStaticListRequest) GetPageSize() int64 {
if x != nil {
return x.PageSize
}
return 0
}
func (x *GetInviteStaticListRequest) GetKeyWords() string {
if x != nil {
return x.KeyWords
}
return ""
}
type GetInviteStaticListData struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Idx int64 `protobuf:"varint,1,opt,name=idx,proto3" json:"idx,omitempty"` //序号
RealName string `protobuf:"bytes,2,opt,name=realName,proto3" json:"realName,omitempty"` //画家真实姓名
TelNum string `protobuf:"bytes,3,opt,name=telNum,proto3" json:"telNum,omitempty"` //电话号码
InviteCode string `protobuf:"bytes,4,opt,name=inviteCode,proto3" json:"inviteCode,omitempty"` //邀请码
InvitePicUrl string `protobuf:"bytes,5,opt,name=invitePicUrl,proto3" json:"invitePicUrl,omitempty"` //邀请二维码
InvitedCount int64 `protobuf:"varint,6,opt,name=invitedCount,proto3" json:"invitedCount,omitempty"` //邀请人员总数
}
func (x *GetInviteStaticListData) Reset() {
*x = GetInviteStaticListData{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artistinfoUser_proto_msgTypes[55]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetInviteStaticListData) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetInviteStaticListData) ProtoMessage() {}
func (x *GetInviteStaticListData) ProtoReflect() protoreflect.Message {
mi := &file_pb_artistinfoUser_proto_msgTypes[55]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetInviteStaticListData.ProtoReflect.Descriptor instead.
func (*GetInviteStaticListData) Descriptor() ([]byte, []int) {
return file_pb_artistinfoUser_proto_rawDescGZIP(), []int{55}
}
func (x *GetInviteStaticListData) GetIdx() int64 {
if x != nil {
return x.Idx
}
return 0
}
func (x *GetInviteStaticListData) GetRealName() string {
if x != nil {
return x.RealName
}
return ""
}
func (x *GetInviteStaticListData) GetTelNum() string {
if x != nil {
return x.TelNum
}
return ""
}
func (x *GetInviteStaticListData) GetInviteCode() string {
if x != nil {
return x.InviteCode
}
return ""
}
func (x *GetInviteStaticListData) GetInvitePicUrl() string {
if x != nil {
return x.InvitePicUrl
}
return ""
}
func (x *GetInviteStaticListData) GetInvitedCount() int64 {
if x != nil {
return x.InvitedCount
}
return 0
}
type GetInviteStaticListResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Data []*GetInviteStaticListData `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
Page *UserCommonPageInfo `protobuf:"bytes,2,opt,name=page,proto3" json:"page,omitempty"`
}
func (x *GetInviteStaticListResponse) Reset() {
*x = GetInviteStaticListResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artistinfoUser_proto_msgTypes[56]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetInviteStaticListResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetInviteStaticListResponse) ProtoMessage() {}
func (x *GetInviteStaticListResponse) ProtoReflect() protoreflect.Message {
mi := &file_pb_artistinfoUser_proto_msgTypes[56]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetInviteStaticListResponse.ProtoReflect.Descriptor instead.
func (*GetInviteStaticListResponse) Descriptor() ([]byte, []int) {
return file_pb_artistinfoUser_proto_rawDescGZIP(), []int{56}
}
func (x *GetInviteStaticListResponse) GetData() []*GetInviteStaticListData {
if x != nil {
return x.Data
}
return nil
}
func (x *GetInviteStaticListResponse) GetPage() *UserCommonPageInfo {
if x != nil {
return x.Page
}
return nil
}
var File_pb_artistinfoUser_proto protoreflect.FileDescriptor var File_pb_artistinfoUser_proto protoreflect.FileDescriptor
var file_pb_artistinfoUser_proto_rawDesc = []byte{ var file_pb_artistinfoUser_proto_rawDesc = []byte{
@ -5086,11 +5354,11 @@ var file_pb_artistinfoUser_proto_rawDesc = []byte{
0x65, 0x22, 0x89, 0x01, 0x0a, 0x1f, 0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x65, 0x22, 0x89, 0x01, 0x0a, 0x1f, 0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65,
0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64,
0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x69, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x69, 0x6e,
0x76, 0x69, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x76, 0x69, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x69,
0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
0x0a, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x0a, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x69,
0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0b, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x21, 0x0a, 0x52, 0x0b, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x21, 0x0a,
0x1f, 0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x1f, 0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x69, 0x74,
0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64,
@ -5357,8 +5625,43 @@ var file_pb_artistinfoUser_proto_rawDesc = []byte{
0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x32, 0x0a, 0x04, 0x70, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x32, 0x0a, 0x04, 0x70,
0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x22,
0x6d, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x72, 0x55, 0x73, 0x65,
0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0b,
0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
0x09, 0x52, 0x0b, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x12,
0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61,
0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x03,
0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x68,
0x0a, 0x1a, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69,
0x63, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65,
0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1a, 0x0a, 0x08,
0x4b, 0x65, 0x79, 0x57, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
0x4b, 0x65, 0x79, 0x57, 0x6f, 0x72, 0x64, 0x73, 0x22, 0xc7, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74,
0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74,
0x44, 0x61, 0x74, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28,
0x03, 0x52, 0x03, 0x69, 0x64, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61,
0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61,
0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01,
0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6c, 0x4e, 0x75, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x6e,
0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e,
0x76, 0x69, 0x74, 0x65, 0x50, 0x69, 0x63, 0x55, 0x72, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0c, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x50, 0x69, 0x63, 0x55, 0x72, 0x6c, 0x12, 0x22,
0x0a, 0x0c, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06,
0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75,
0x6e, 0x74, 0x22, 0x8a, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65,
0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x73, 0x65, 0x12, 0x37, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x23, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65,
0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x4c, 0x69, 0x73,
0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x32, 0x0a, 0x04, 0x70,
0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x32, 0x6e, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x32,
0xa3, 0x0f, 0x0a, 0x0e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x55, 0x73, 0xf4, 0x10, 0x0a, 0x0e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x55, 0x73,
0x65, 0x72, 0x12, 0x52, 0x0a, 0x0c, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x12, 0x52, 0x0a, 0x0c, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73,
0x65, 0x72, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x65, 0x72, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e,
0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
@ -5480,9 +5783,22 @@ var file_pb_artistinfoUser_proto_rawDesc = []byte{
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x69,
0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x13, 0x5a, 0x11, 0x2e, 0x2f, 0x3b, 0x61, 0x72, 0x74, 0x69, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x69,
0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x50, 0x00, 0x62, 0x06, 0x70, 0x72, 0x74, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x72,
0x6f, 0x74, 0x6f, 0x33, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x69,
0x74, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e,
0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x13,
0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x4c,
0x69, 0x73, 0x74, 0x12, 0x26, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f,
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63,
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x69,
0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x13, 0x5a, 0x11, 0x2e, 0x2f, 0x3b, 0x61, 0x72, 0x74,
0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x50, 0x00, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
} }
var ( var (
@ -5497,7 +5813,7 @@ func file_pb_artistinfoUser_proto_rawDescGZIP() []byte {
return file_pb_artistinfoUser_proto_rawDescData return file_pb_artistinfoUser_proto_rawDescData
} }
var file_pb_artistinfoUser_proto_msgTypes = make([]protoimpl.MessageInfo, 53) var file_pb_artistinfoUser_proto_msgTypes = make([]protoimpl.MessageInfo, 57)
var file_pb_artistinfoUser_proto_goTypes = []interface{}{ var file_pb_artistinfoUser_proto_goTypes = []interface{}{
(*CommonNoParams)(nil), // 0: artistinfo.CommonNoParams (*CommonNoParams)(nil), // 0: artistinfo.CommonNoParams
(*UserCommonPageInfo)(nil), // 1: artistinfo.UserCommonPageInfo (*UserCommonPageInfo)(nil), // 1: artistinfo.UserCommonPageInfo
@ -5552,6 +5868,10 @@ var file_pb_artistinfoUser_proto_goTypes = []interface{}{
(*GetInvitedUserListRequest)(nil), // 50: artistinfo.GetInvitedUserListRequest (*GetInvitedUserListRequest)(nil), // 50: artistinfo.GetInvitedUserListRequest
(*InvitedUser)(nil), // 51: artistinfo.InvitedUser (*InvitedUser)(nil), // 51: artistinfo.InvitedUser
(*GetInvitedUserListResponse)(nil), // 52: artistinfo.GetInvitedUserListResponse (*GetInvitedUserListResponse)(nil), // 52: artistinfo.GetInvitedUserListResponse
(*GetInviterUserListRequest)(nil), // 53: artistinfo.GetInviterUserListRequest
(*GetInviteStaticListRequest)(nil), // 54: artistinfo.GetInviteStaticListRequest
(*GetInviteStaticListData)(nil), // 55: artistinfo.GetInviteStaticListData
(*GetInviteStaticListResponse)(nil), // 56: artistinfo.GetInviteStaticListResponse
} }
var file_pb_artistinfoUser_proto_depIdxs = []int32{ var file_pb_artistinfoUser_proto_depIdxs = []int32{
33, // 0: artistinfo.ArtistSupplyListRespond.data:type_name -> artistinfo.ArtistArtworkSupplyListResponseData 33, // 0: artistinfo.ArtistSupplyListRespond.data:type_name -> artistinfo.ArtistArtworkSupplyListResponseData
@ -5562,57 +5882,63 @@ var file_pb_artistinfoUser_proto_depIdxs = []int32{
1, // 5: artistinfo.FindUsersUserViewResponse.page:type_name -> artistinfo.UserCommonPageInfo 1, // 5: artistinfo.FindUsersUserViewResponse.page:type_name -> artistinfo.UserCommonPageInfo
51, // 6: artistinfo.GetInvitedUserListResponse.data:type_name -> artistinfo.InvitedUser 51, // 6: artistinfo.GetInvitedUserListResponse.data:type_name -> artistinfo.InvitedUser
1, // 7: artistinfo.GetInvitedUserListResponse.page:type_name -> artistinfo.UserCommonPageInfo 1, // 7: artistinfo.GetInvitedUserListResponse.page:type_name -> artistinfo.UserCommonPageInfo
14, // 8: artistinfo.ArtistInfoUser.RegisterUser:input_type -> artistinfo.RegisterUserRequest 55, // 8: artistinfo.GetInviteStaticListResponse.data:type_name -> artistinfo.GetInviteStaticListData
12, // 9: artistinfo.ArtistInfoUser.UpdateIdCard:input_type -> artistinfo.UpdateIdCardRequest 1, // 9: artistinfo.GetInviteStaticListResponse.page:type_name -> artistinfo.UserCommonPageInfo
16, // 10: artistinfo.ArtistInfoUser.GetUser:input_type -> artistinfo.GetUserRequest 14, // 10: artistinfo.ArtistInfoUser.RegisterUser:input_type -> artistinfo.RegisterUserRequest
18, // 11: artistinfo.ArtistInfoUser.GetUserById:input_type -> artistinfo.GetUserByIdRequest 12, // 11: artistinfo.ArtistInfoUser.UpdateIdCard:input_type -> artistinfo.UpdateIdCardRequest
21, // 12: artistinfo.ArtistInfoUser.CreateUser:input_type -> artistinfo.CreateUserRequest 16, // 12: artistinfo.ArtistInfoUser.GetUser:input_type -> artistinfo.GetUserRequest
23, // 13: artistinfo.ArtistInfoUser.CreateUserInfo:input_type -> artistinfo.CreateUserInfoRequest 18, // 13: artistinfo.ArtistInfoUser.GetUserById:input_type -> artistinfo.GetUserByIdRequest
27, // 14: artistinfo.ArtistInfoUser.FinishVerify:input_type -> artistinfo.FinishVerifyRequest 21, // 14: artistinfo.ArtistInfoUser.CreateUser:input_type -> artistinfo.CreateUserRequest
29, // 15: artistinfo.ArtistInfoUser.CheckUserLock:input_type -> artistinfo.CheckUserLockRequest 23, // 15: artistinfo.ArtistInfoUser.CreateUserInfo:input_type -> artistinfo.CreateUserInfoRequest
31, // 16: artistinfo.ArtistInfoUser.ArtistSupplyList:input_type -> artistinfo.ArtistSupplyListRequest 27, // 16: artistinfo.ArtistInfoUser.FinishVerify:input_type -> artistinfo.FinishVerifyRequest
34, // 17: artistinfo.ArtistInfoUser.UserLock:input_type -> artistinfo.UserLockRequest 29, // 17: artistinfo.ArtistInfoUser.CheckUserLock:input_type -> artistinfo.CheckUserLockRequest
6, // 18: artistinfo.ArtistInfoUser.CheckInvitedCode:input_type -> artistinfo.CheckInvitedCodeRequest 31, // 18: artistinfo.ArtistInfoUser.ArtistSupplyList:input_type -> artistinfo.ArtistSupplyListRequest
8, // 19: artistinfo.ArtistInfoUser.UnFinishList:input_type -> artistinfo.UnFinishListRequest 34, // 19: artistinfo.ArtistInfoUser.UserLock:input_type -> artistinfo.UserLockRequest
4, // 20: artistinfo.ArtistInfoUser.GetUserMsg:input_type -> artistinfo.GetUserMsgRequest 6, // 20: artistinfo.ArtistInfoUser.CheckInvitedCode:input_type -> artistinfo.CheckInvitedCodeRequest
2, // 21: artistinfo.ArtistInfoUser.UpdateMsg:input_type -> artistinfo.UpdateMsgRequest 8, // 21: artistinfo.ArtistInfoUser.UnFinishList:input_type -> artistinfo.UnFinishListRequest
36, // 22: artistinfo.ArtistInfoUser.BindInviteInvitedAccount:input_type -> artistinfo.BindInviteInvitedAccountRequest 4, // 22: artistinfo.ArtistInfoUser.GetUserMsg:input_type -> artistinfo.GetUserMsgRequest
38, // 23: artistinfo.ArtistInfoUser.BindArtistId:input_type -> artistinfo.BindArtistIdRequest 2, // 23: artistinfo.ArtistInfoUser.UpdateMsg:input_type -> artistinfo.UpdateMsgRequest
41, // 24: artistinfo.ArtistInfoUser.FindUser:input_type -> artistinfo.FindUserRequest 36, // 24: artistinfo.ArtistInfoUser.BindInviteInvitedAccount:input_type -> artistinfo.BindInviteInvitedAccountRequest
42, // 25: artistinfo.ArtistInfoUser.FindUsers:input_type -> artistinfo.FindUsersRequest 38, // 25: artistinfo.ArtistInfoUser.BindArtistId:input_type -> artistinfo.BindArtistIdRequest
42, // 26: artistinfo.ArtistInfoUser.FindUsersUserView:input_type -> artistinfo.FindUsersRequest 41, // 26: artistinfo.ArtistInfoUser.FindUser:input_type -> artistinfo.FindUserRequest
45, // 27: artistinfo.ArtistInfoUser.UpdateUserData:input_type -> artistinfo.UserInfo 42, // 27: artistinfo.ArtistInfoUser.FindUsers:input_type -> artistinfo.FindUsersRequest
46, // 28: artistinfo.ArtistInfoUser.PreSaveArtistInfo:input_type -> artistinfo.PreSaveArtistInfoData 42, // 28: artistinfo.ArtistInfoUser.FindUsersUserView:input_type -> artistinfo.FindUsersRequest
47, // 29: artistinfo.ArtistInfoUser.GetPreSaveArtistInfo:input_type -> artistinfo.GetPreSaveArtistInfoRequest 45, // 29: artistinfo.ArtistInfoUser.UpdateUserData:input_type -> artistinfo.UserInfo
50, // 30: artistinfo.ArtistInfoUser.GetInvitedUserList:input_type -> artistinfo.GetInvitedUserListRequest 46, // 30: artistinfo.ArtistInfoUser.PreSaveArtistInfo:input_type -> artistinfo.PreSaveArtistInfoData
15, // 31: artistinfo.ArtistInfoUser.RegisterUser:output_type -> artistinfo.RegisterUserRespond 47, // 31: artistinfo.ArtistInfoUser.GetPreSaveArtistInfo:input_type -> artistinfo.GetPreSaveArtistInfoRequest
0, // 32: artistinfo.ArtistInfoUser.UpdateIdCard:output_type -> artistinfo.CommonNoParams 50, // 32: artistinfo.ArtistInfoUser.GetInvitedUserList:input_type -> artistinfo.GetInvitedUserListRequest
17, // 33: artistinfo.ArtistInfoUser.GetUser:output_type -> artistinfo.GetUserRespond 53, // 33: artistinfo.ArtistInfoUser.GetInviterUserList:input_type -> artistinfo.GetInviterUserListRequest
19, // 34: artistinfo.ArtistInfoUser.GetUserById:output_type -> artistinfo.GetUserByIdRespond 54, // 34: artistinfo.ArtistInfoUser.GetInviteStaticList:input_type -> artistinfo.GetInviteStaticListRequest
22, // 35: artistinfo.ArtistInfoUser.CreateUser:output_type -> artistinfo.CreateUserRespond 15, // 35: artistinfo.ArtistInfoUser.RegisterUser:output_type -> artistinfo.RegisterUserRespond
24, // 36: artistinfo.ArtistInfoUser.CreateUserInfo:output_type -> artistinfo.CreateUserInfoRespond 0, // 36: artistinfo.ArtistInfoUser.UpdateIdCard:output_type -> artistinfo.CommonNoParams
28, // 37: artistinfo.ArtistInfoUser.FinishVerify:output_type -> artistinfo.FinishVerifyRespond 17, // 37: artistinfo.ArtistInfoUser.GetUser:output_type -> artistinfo.GetUserRespond
30, // 38: artistinfo.ArtistInfoUser.CheckUserLock:output_type -> artistinfo.CheckUserLockRespond 19, // 38: artistinfo.ArtistInfoUser.GetUserById:output_type -> artistinfo.GetUserByIdRespond
32, // 39: artistinfo.ArtistInfoUser.ArtistSupplyList:output_type -> artistinfo.ArtistSupplyListRespond 22, // 39: artistinfo.ArtistInfoUser.CreateUser:output_type -> artistinfo.CreateUserRespond
35, // 40: artistinfo.ArtistInfoUser.UserLock:output_type -> artistinfo.UserLockRespond 24, // 40: artistinfo.ArtistInfoUser.CreateUserInfo:output_type -> artistinfo.CreateUserInfoRespond
17, // 41: artistinfo.ArtistInfoUser.CheckInvitedCode:output_type -> artistinfo.GetUserRespond 28, // 41: artistinfo.ArtistInfoUser.FinishVerify:output_type -> artistinfo.FinishVerifyRespond
9, // 42: artistinfo.ArtistInfoUser.UnFinishList:output_type -> artistinfo.UnFinishListRespond 30, // 42: artistinfo.ArtistInfoUser.CheckUserLock:output_type -> artistinfo.CheckUserLockRespond
5, // 43: artistinfo.ArtistInfoUser.GetUserMsg:output_type -> artistinfo.GetUserMsgRespond 32, // 43: artistinfo.ArtistInfoUser.ArtistSupplyList:output_type -> artistinfo.ArtistSupplyListRespond
3, // 44: artistinfo.ArtistInfoUser.UpdateMsg:output_type -> artistinfo.UpdateMsgRespond 35, // 44: artistinfo.ArtistInfoUser.UserLock:output_type -> artistinfo.UserLockRespond
37, // 45: artistinfo.ArtistInfoUser.BindInviteInvitedAccount:output_type -> artistinfo.BindInviteInvitedAccountRespond 17, // 45: artistinfo.ArtistInfoUser.CheckInvitedCode:output_type -> artistinfo.GetUserRespond
39, // 46: artistinfo.ArtistInfoUser.BindArtistId:output_type -> artistinfo.BindArtistIdResp 9, // 46: artistinfo.ArtistInfoUser.UnFinishList:output_type -> artistinfo.UnFinishListRespond
45, // 47: artistinfo.ArtistInfoUser.FindUser:output_type -> artistinfo.UserInfo 5, // 47: artistinfo.ArtistInfoUser.GetUserMsg:output_type -> artistinfo.GetUserMsgRespond
43, // 48: artistinfo.ArtistInfoUser.FindUsers:output_type -> artistinfo.FindUsersResponse 3, // 48: artistinfo.ArtistInfoUser.UpdateMsg:output_type -> artistinfo.UpdateMsgRespond
49, // 49: artistinfo.ArtistInfoUser.FindUsersUserView:output_type -> artistinfo.FindUsersUserViewResponse 37, // 49: artistinfo.ArtistInfoUser.BindInviteInvitedAccount:output_type -> artistinfo.BindInviteInvitedAccountRespond
0, // 50: artistinfo.ArtistInfoUser.UpdateUserData:output_type -> artistinfo.CommonNoParams 39, // 50: artistinfo.ArtistInfoUser.BindArtistId:output_type -> artistinfo.BindArtistIdResp
0, // 51: artistinfo.ArtistInfoUser.PreSaveArtistInfo:output_type -> artistinfo.CommonNoParams 45, // 51: artistinfo.ArtistInfoUser.FindUser:output_type -> artistinfo.UserInfo
46, // 52: artistinfo.ArtistInfoUser.GetPreSaveArtistInfo:output_type -> artistinfo.PreSaveArtistInfoData 43, // 52: artistinfo.ArtistInfoUser.FindUsers:output_type -> artistinfo.FindUsersResponse
52, // 53: artistinfo.ArtistInfoUser.GetInvitedUserList:output_type -> artistinfo.GetInvitedUserListResponse 49, // 53: artistinfo.ArtistInfoUser.FindUsersUserView:output_type -> artistinfo.FindUsersUserViewResponse
31, // [31:54] is the sub-list for method output_type 0, // 54: artistinfo.ArtistInfoUser.UpdateUserData:output_type -> artistinfo.CommonNoParams
8, // [8:31] is the sub-list for method input_type 0, // 55: artistinfo.ArtistInfoUser.PreSaveArtistInfo:output_type -> artistinfo.CommonNoParams
8, // [8:8] is the sub-list for extension type_name 46, // 56: artistinfo.ArtistInfoUser.GetPreSaveArtistInfo:output_type -> artistinfo.PreSaveArtistInfoData
8, // [8:8] is the sub-list for extension extendee 52, // 57: artistinfo.ArtistInfoUser.GetInvitedUserList:output_type -> artistinfo.GetInvitedUserListResponse
0, // [0:8] is the sub-list for field type_name 52, // 58: artistinfo.ArtistInfoUser.GetInviterUserList:output_type -> artistinfo.GetInvitedUserListResponse
56, // 59: artistinfo.ArtistInfoUser.GetInviteStaticList:output_type -> artistinfo.GetInviteStaticListResponse
35, // [35:60] is the sub-list for method output_type
10, // [10:35] is the sub-list for method input_type
10, // [10:10] is the sub-list for extension type_name
10, // [10:10] is the sub-list for extension extendee
0, // [0:10] is the sub-list for field type_name
} }
func init() { file_pb_artistinfoUser_proto_init() } func init() { file_pb_artistinfoUser_proto_init() }
@ -6257,6 +6583,54 @@ func file_pb_artistinfoUser_proto_init() {
return nil return nil
} }
} }
file_pb_artistinfoUser_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetInviterUserListRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_artistinfoUser_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetInviteStaticListRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_artistinfoUser_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetInviteStaticListData); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_artistinfoUser_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetInviteStaticListResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
} }
type x struct{} type x struct{}
out := protoimpl.TypeBuilder{ out := protoimpl.TypeBuilder{
@ -6264,7 +6638,7 @@ func file_pb_artistinfoUser_proto_init() {
GoPackagePath: reflect.TypeOf(x{}).PkgPath(), GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_pb_artistinfoUser_proto_rawDesc, RawDescriptor: file_pb_artistinfoUser_proto_rawDesc,
NumEnums: 0, NumEnums: 0,
NumMessages: 53, NumMessages: 57,
NumExtensions: 0, NumExtensions: 0,
NumServices: 1, NumServices: 1,
}, },

View File

@ -53,6 +53,8 @@ type ArtistInfoUserClient interface {
PreSaveArtistInfo(ctx context.Context, in *PreSaveArtistInfoData, opts ...grpc_go.CallOption) (*CommonNoParams, common.ErrorWithAttachment) PreSaveArtistInfo(ctx context.Context, in *PreSaveArtistInfoData, opts ...grpc_go.CallOption) (*CommonNoParams, common.ErrorWithAttachment)
GetPreSaveArtistInfo(ctx context.Context, in *GetPreSaveArtistInfoRequest, opts ...grpc_go.CallOption) (*PreSaveArtistInfoData, common.ErrorWithAttachment) GetPreSaveArtistInfo(ctx context.Context, in *GetPreSaveArtistInfoRequest, opts ...grpc_go.CallOption) (*PreSaveArtistInfoData, common.ErrorWithAttachment)
GetInvitedUserList(ctx context.Context, in *GetInvitedUserListRequest, opts ...grpc_go.CallOption) (*GetInvitedUserListResponse, common.ErrorWithAttachment) GetInvitedUserList(ctx context.Context, in *GetInvitedUserListRequest, opts ...grpc_go.CallOption) (*GetInvitedUserListResponse, common.ErrorWithAttachment)
GetInviterUserList(ctx context.Context, in *GetInviterUserListRequest, opts ...grpc_go.CallOption) (*GetInvitedUserListResponse, common.ErrorWithAttachment)
GetInviteStaticList(ctx context.Context, in *GetInviteStaticListRequest, opts ...grpc_go.CallOption) (*GetInviteStaticListResponse, common.ErrorWithAttachment)
} }
type artistInfoUserClient struct { type artistInfoUserClient struct {
@ -83,6 +85,8 @@ type ArtistInfoUserClientImpl struct {
PreSaveArtistInfo func(ctx context.Context, in *PreSaveArtistInfoData) (*CommonNoParams, error) PreSaveArtistInfo func(ctx context.Context, in *PreSaveArtistInfoData) (*CommonNoParams, error)
GetPreSaveArtistInfo func(ctx context.Context, in *GetPreSaveArtistInfoRequest) (*PreSaveArtistInfoData, error) GetPreSaveArtistInfo func(ctx context.Context, in *GetPreSaveArtistInfoRequest) (*PreSaveArtistInfoData, error)
GetInvitedUserList func(ctx context.Context, in *GetInvitedUserListRequest) (*GetInvitedUserListResponse, error) GetInvitedUserList func(ctx context.Context, in *GetInvitedUserListRequest) (*GetInvitedUserListResponse, error)
GetInviterUserList func(ctx context.Context, in *GetInviterUserListRequest) (*GetInvitedUserListResponse, error)
GetInviteStaticList func(ctx context.Context, in *GetInviteStaticListRequest) (*GetInviteStaticListResponse, error)
} }
func (c *ArtistInfoUserClientImpl) GetDubboStub(cc *triple.TripleConn) ArtistInfoUserClient { func (c *ArtistInfoUserClientImpl) GetDubboStub(cc *triple.TripleConn) ArtistInfoUserClient {
@ -235,6 +239,18 @@ func (c *artistInfoUserClient) GetInvitedUserList(ctx context.Context, in *GetIn
return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/GetInvitedUserList", in, out) return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/GetInvitedUserList", in, out)
} }
func (c *artistInfoUserClient) GetInviterUserList(ctx context.Context, in *GetInviterUserListRequest, opts ...grpc_go.CallOption) (*GetInvitedUserListResponse, common.ErrorWithAttachment) {
out := new(GetInvitedUserListResponse)
interfaceKey := ctx.Value(constant.InterfaceKey).(string)
return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/GetInviterUserList", in, out)
}
func (c *artistInfoUserClient) GetInviteStaticList(ctx context.Context, in *GetInviteStaticListRequest, opts ...grpc_go.CallOption) (*GetInviteStaticListResponse, common.ErrorWithAttachment) {
out := new(GetInviteStaticListResponse)
interfaceKey := ctx.Value(constant.InterfaceKey).(string)
return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/GetInviteStaticList", in, out)
}
// ArtistInfoUserServer is the server API for ArtistInfoUser service. // ArtistInfoUserServer is the server API for ArtistInfoUser service.
// All implementations must embed UnimplementedArtistInfoUserServer // All implementations must embed UnimplementedArtistInfoUserServer
// for forward compatibility // for forward compatibility
@ -264,6 +280,8 @@ type ArtistInfoUserServer interface {
PreSaveArtistInfo(context.Context, *PreSaveArtistInfoData) (*CommonNoParams, error) PreSaveArtistInfo(context.Context, *PreSaveArtistInfoData) (*CommonNoParams, error)
GetPreSaveArtistInfo(context.Context, *GetPreSaveArtistInfoRequest) (*PreSaveArtistInfoData, error) GetPreSaveArtistInfo(context.Context, *GetPreSaveArtistInfoRequest) (*PreSaveArtistInfoData, error)
GetInvitedUserList(context.Context, *GetInvitedUserListRequest) (*GetInvitedUserListResponse, error) GetInvitedUserList(context.Context, *GetInvitedUserListRequest) (*GetInvitedUserListResponse, error)
GetInviterUserList(context.Context, *GetInviterUserListRequest) (*GetInvitedUserListResponse, error)
GetInviteStaticList(context.Context, *GetInviteStaticListRequest) (*GetInviteStaticListResponse, error)
mustEmbedUnimplementedArtistInfoUserServer() mustEmbedUnimplementedArtistInfoUserServer()
} }
@ -341,6 +359,12 @@ func (UnimplementedArtistInfoUserServer) GetPreSaveArtistInfo(context.Context, *
func (UnimplementedArtistInfoUserServer) GetInvitedUserList(context.Context, *GetInvitedUserListRequest) (*GetInvitedUserListResponse, error) { func (UnimplementedArtistInfoUserServer) GetInvitedUserList(context.Context, *GetInvitedUserListRequest) (*GetInvitedUserListResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetInvitedUserList not implemented") return nil, status.Errorf(codes.Unimplemented, "method GetInvitedUserList not implemented")
} }
func (UnimplementedArtistInfoUserServer) GetInviterUserList(context.Context, *GetInviterUserListRequest) (*GetInvitedUserListResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetInviterUserList not implemented")
}
func (UnimplementedArtistInfoUserServer) GetInviteStaticList(context.Context, *GetInviteStaticListRequest) (*GetInviteStaticListResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetInviteStaticList not implemented")
}
func (s *UnimplementedArtistInfoUserServer) XXX_SetProxyImpl(impl protocol.Invoker) { func (s *UnimplementedArtistInfoUserServer) XXX_SetProxyImpl(impl protocol.Invoker) {
s.proxyImpl = impl s.proxyImpl = impl
} }
@ -1036,6 +1060,64 @@ func _ArtistInfoUser_GetInvitedUserList_Handler(srv interface{}, ctx context.Con
return interceptor(ctx, in, info, handler) return interceptor(ctx, in, info, handler)
} }
func _ArtistInfoUser_GetInviterUserList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc_go.UnaryServerInterceptor) (interface{}, error) {
in := new(GetInviterUserListRequest)
if err := dec(in); err != nil {
return nil, err
}
base := srv.(dubbo3.Dubbo3GrpcService)
args := []interface{}{}
args = append(args, in)
md, _ := metadata.FromIncomingContext(ctx)
invAttachment := make(map[string]interface{}, len(md))
for k, v := range md {
invAttachment[k] = v
}
invo := invocation.NewRPCInvocation("GetInviterUserList", args, invAttachment)
if interceptor == nil {
result := base.XXX_GetProxyImpl().Invoke(ctx, invo)
return result, result.Error()
}
info := &grpc_go.UnaryServerInfo{
Server: srv,
FullMethod: ctx.Value("XXX_TRIPLE_GO_INTERFACE_NAME").(string),
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
result := base.XXX_GetProxyImpl().Invoke(ctx, invo)
return result, result.Error()
}
return interceptor(ctx, in, info, handler)
}
func _ArtistInfoUser_GetInviteStaticList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc_go.UnaryServerInterceptor) (interface{}, error) {
in := new(GetInviteStaticListRequest)
if err := dec(in); err != nil {
return nil, err
}
base := srv.(dubbo3.Dubbo3GrpcService)
args := []interface{}{}
args = append(args, in)
md, _ := metadata.FromIncomingContext(ctx)
invAttachment := make(map[string]interface{}, len(md))
for k, v := range md {
invAttachment[k] = v
}
invo := invocation.NewRPCInvocation("GetInviteStaticList", args, invAttachment)
if interceptor == nil {
result := base.XXX_GetProxyImpl().Invoke(ctx, invo)
return result, result.Error()
}
info := &grpc_go.UnaryServerInfo{
Server: srv,
FullMethod: ctx.Value("XXX_TRIPLE_GO_INTERFACE_NAME").(string),
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
result := base.XXX_GetProxyImpl().Invoke(ctx, invo)
return result, result.Error()
}
return interceptor(ctx, in, info, handler)
}
// ArtistInfoUser_ServiceDesc is the grpc_go.ServiceDesc for ArtistInfoUser service. // ArtistInfoUser_ServiceDesc is the grpc_go.ServiceDesc for ArtistInfoUser service.
// It's only intended for direct use with grpc_go.RegisterService, // It's only intended for direct use with grpc_go.RegisterService,
// and not to be introspected or modified (even as a copy) // and not to be introspected or modified (even as a copy)
@ -1135,6 +1217,14 @@ var ArtistInfoUser_ServiceDesc = grpc_go.ServiceDesc{
MethodName: "GetInvitedUserList", MethodName: "GetInvitedUserList",
Handler: _ArtistInfoUser_GetInvitedUserList_Handler, Handler: _ArtistInfoUser_GetInvitedUserList_Handler,
}, },
{
MethodName: "GetInviterUserList",
Handler: _ArtistInfoUser_GetInviterUserList_Handler,
},
{
MethodName: "GetInviteStaticList",
Handler: _ArtistInfoUser_GetInviteStaticList_Handler,
},
}, },
Streams: []grpc_go.StreamDesc{}, Streams: []grpc_go.StreamDesc{},
Metadata: "pb/artistinfoUser.proto", Metadata: "pb/artistinfoUser.proto",

View File

@ -28,7 +28,9 @@ service ArtistInfoUser {
rpc UpdateUserData(UserInfo)returns(CommonNoParams){} // rpc UpdateUserData(UserInfo)returns(CommonNoParams){} //
rpc PreSaveArtistInfo(PreSaveArtistInfoData)returns(CommonNoParams){}// rpc PreSaveArtistInfo(PreSaveArtistInfoData)returns(CommonNoParams){}//
rpc GetPreSaveArtistInfo(GetPreSaveArtistInfoRequest)returns(PreSaveArtistInfoData){} // rpc GetPreSaveArtistInfo(GetPreSaveArtistInfoRequest)returns(PreSaveArtistInfoData){} //
rpc GetInvitedUserList(GetInvitedUserListRequest)returns(GetInvitedUserListResponse){}// rpc GetInvitedUserList(GetInvitedUserListRequest)returns(GetInvitedUserListResponse){} //
rpc GetInviterUserList(GetInviterUserListRequest)returns(GetInvitedUserListResponse){} //
rpc GetInviteStaticList(GetInviteStaticListRequest)returns(GetInviteStaticListResponse){}//
} }
message CommonNoParams{ message CommonNoParams{
} }
@ -520,6 +522,7 @@ message GetInvitedUserListRequest{
int64 page=3; int64 page=3;
int64 pageSize=4; int64 pageSize=4;
} }
message InvitedUser{ message InvitedUser{
int64 userId=1; int64 userId=1;
int64 accId=2; int64 accId=2;
@ -541,3 +544,27 @@ message GetInvitedUserListResponse{
repeated InvitedUser data =1; repeated InvitedUser data =1;
UserCommonPageInfo page =2; UserCommonPageInfo page =2;
} }
message GetInviterUserListRequest{
string invitedCode=1; //
int64 page=2;
int64 pageSize=3;
}
message GetInviteStaticListRequest{
int64 page=1;
int64 pageSize=2;
string KeyWords=3; // OR OR
}
message GetInviteStaticListData{
int64 idx=1;//
string realName=2;//
string telNum=3;//
string inviteCode=4;//
string invitePicUrl=5;//
int64 invitedCount=6;//
}
message GetInviteStaticListResponse{
repeated GetInviteStaticListData data =1;
UserCommonPageInfo page=2;
}