bug修复
This commit is contained in:
parent
746f4404b0
commit
85a0d2a4e0
@ -699,7 +699,7 @@ type UserListInfo struct {
|
|||||||
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
|
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
|
||||||
Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status"`
|
Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status"`
|
||||||
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
|
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
|
||||||
Sex int32 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"`
|
Sex string `protobuf:"bytes,4,opt,name=sex,proto3" json:"sex"`
|
||||||
Nationality string `protobuf:"bytes,5,opt,name=nationality,proto3" json:"nationality"`
|
Nationality string `protobuf:"bytes,5,opt,name=nationality,proto3" json:"nationality"`
|
||||||
DocumentType int32 `protobuf:"varint,6,opt,name=documentType,proto3" json:"documentType"`
|
DocumentType int32 `protobuf:"varint,6,opt,name=documentType,proto3" json:"documentType"`
|
||||||
CertificatePicture string `protobuf:"bytes,7,opt,name=certificatePicture,proto3" json:"certificatePicture"`
|
CertificatePicture string `protobuf:"bytes,7,opt,name=certificatePicture,proto3" json:"certificatePicture"`
|
||||||
@ -771,11 +771,11 @@ func (x *UserListInfo) GetName() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *UserListInfo) GetSex() int32 {
|
func (x *UserListInfo) GetSex() string {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Sex
|
return x.Sex
|
||||||
}
|
}
|
||||||
return 0
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *UserListInfo) GetNationality() string {
|
func (x *UserListInfo) GetNationality() string {
|
||||||
@ -899,7 +899,7 @@ type UserListRequest struct {
|
|||||||
SubNum string `protobuf:"bytes,2,opt,name=subNum,proto3" json:"subNum"`
|
SubNum string `protobuf:"bytes,2,opt,name=subNum,proto3" json:"subNum"`
|
||||||
RealNameOrNot int32 `protobuf:"varint,3,opt,name=realNameOrNot,proto3" json:"realNameOrNot"`
|
RealNameOrNot int32 `protobuf:"varint,3,opt,name=realNameOrNot,proto3" json:"realNameOrNot"`
|
||||||
Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"`
|
Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"`
|
||||||
Sex int32 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"`
|
Sex string `protobuf:"bytes,5,opt,name=sex,proto3" json:"sex"`
|
||||||
DocumentType int32 `protobuf:"varint,6,opt,name=documentType,proto3" json:"documentType"`
|
DocumentType int32 `protobuf:"varint,6,opt,name=documentType,proto3" json:"documentType"`
|
||||||
AuditStatus int32 `protobuf:"varint,7,opt,name=auditStatus,proto3" json:"auditStatus"`
|
AuditStatus int32 `protobuf:"varint,7,opt,name=auditStatus,proto3" json:"auditStatus"`
|
||||||
Page uint64 `protobuf:"varint,8,opt,name=page,proto3" json:"page"`
|
Page uint64 `protobuf:"varint,8,opt,name=page,proto3" json:"page"`
|
||||||
@ -966,11 +966,11 @@ func (x *UserListRequest) GetName() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *UserListRequest) GetSex() int32 {
|
func (x *UserListRequest) GetSex() string {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Sex
|
return x.Sex
|
||||||
}
|
}
|
||||||
return 0
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *UserListRequest) GetDocumentType() int32 {
|
func (x *UserListRequest) GetDocumentType() int32 {
|
||||||
@ -1009,7 +1009,7 @@ type UserInfoResponse struct {
|
|||||||
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
|
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
|
||||||
Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status"`
|
Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status"`
|
||||||
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
|
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
|
||||||
Sex int32 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"`
|
Sex string `protobuf:"bytes,4,opt,name=sex,proto3" json:"sex"`
|
||||||
Nationality string `protobuf:"bytes,5,opt,name=nationality,proto3" json:"nationality"`
|
Nationality string `protobuf:"bytes,5,opt,name=nationality,proto3" json:"nationality"`
|
||||||
DocumentType int32 `protobuf:"varint,6,opt,name=documentType,proto3" json:"documentType"`
|
DocumentType int32 `protobuf:"varint,6,opt,name=documentType,proto3" json:"documentType"`
|
||||||
CertificatePicture string `protobuf:"bytes,7,opt,name=certificatePicture,proto3" json:"certificatePicture"`
|
CertificatePicture string `protobuf:"bytes,7,opt,name=certificatePicture,proto3" json:"certificatePicture"`
|
||||||
@ -1078,11 +1078,11 @@ func (x *UserInfoResponse) GetName() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *UserInfoResponse) GetSex() int32 {
|
func (x *UserInfoResponse) GetSex() string {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Sex
|
return x.Sex
|
||||||
}
|
}
|
||||||
return 0
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *UserInfoResponse) GetNationality() string {
|
func (x *UserInfoResponse) GetNationality() string {
|
||||||
@ -1238,7 +1238,7 @@ type RealNameRequest struct {
|
|||||||
|
|
||||||
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
|
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
|
||||||
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
|
||||||
Sex int32 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"`
|
Sex string `protobuf:"bytes,3,opt,name=sex,proto3" json:"sex"`
|
||||||
Nationality string `protobuf:"bytes,4,opt,name=nationality,proto3" json:"nationality"`
|
Nationality string `protobuf:"bytes,4,opt,name=nationality,proto3" json:"nationality"`
|
||||||
DocumentType int32 `protobuf:"varint,5,opt,name=documentType,proto3" json:"documentType"`
|
DocumentType int32 `protobuf:"varint,5,opt,name=documentType,proto3" json:"documentType"`
|
||||||
CertificatePicture string `protobuf:"bytes,6,opt,name=certificatePicture,proto3" json:"certificatePicture"`
|
CertificatePicture string `protobuf:"bytes,6,opt,name=certificatePicture,proto3" json:"certificatePicture"`
|
||||||
@ -1294,11 +1294,11 @@ func (x *RealNameRequest) GetName() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *RealNameRequest) GetSex() int32 {
|
func (x *RealNameRequest) GetSex() string {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Sex
|
return x.Sex
|
||||||
}
|
}
|
||||||
return 0
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *RealNameRequest) GetNationality() string {
|
func (x *RealNameRequest) GetNationality() string {
|
||||||
@ -5729,7 +5729,7 @@ type AccountInfo struct {
|
|||||||
JobNum string `protobuf:"bytes,18,opt,name=JobNum,json=jobNum,proto3" json:"JobNum"`
|
JobNum string `protobuf:"bytes,18,opt,name=JobNum,json=jobNum,proto3" json:"JobNum"`
|
||||||
BirthDate string `protobuf:"bytes,19,opt,name=BirthDate,json=birth_date,proto3" json:"BirthDate"`
|
BirthDate string `protobuf:"bytes,19,opt,name=BirthDate,json=birth_date,proto3" json:"BirthDate"`
|
||||||
Age uint64 `protobuf:"varint,20,opt,name=Age,json=age,proto3" json:"Age"`
|
Age uint64 `protobuf:"varint,20,opt,name=Age,json=age,proto3" json:"Age"`
|
||||||
Sex uint64 `protobuf:"varint,21,opt,name=Sex,json=sex,proto3" json:"Sex"`
|
Sex string `protobuf:"bytes,21,opt,name=Sex,json=sex,proto3" json:"Sex"`
|
||||||
Title string `protobuf:"bytes,22,opt,name=Title,json=title,proto3" json:"Title"`
|
Title string `protobuf:"bytes,22,opt,name=Title,json=title,proto3" json:"Title"`
|
||||||
Departments []*Department `protobuf:"bytes,23,rep,name=Departments,json=departments,proto3" json:"Departments"`
|
Departments []*Department `protobuf:"bytes,23,rep,name=Departments,json=departments,proto3" json:"Departments"`
|
||||||
Ip string `protobuf:"bytes,24,opt,name=Ip,json=ip,proto3" json:"Ip"`
|
Ip string `protobuf:"bytes,24,opt,name=Ip,json=ip,proto3" json:"Ip"`
|
||||||
@ -5926,11 +5926,11 @@ func (x *AccountInfo) GetAge() uint64 {
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *AccountInfo) GetSex() uint64 {
|
func (x *AccountInfo) GetSex() string {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Sex
|
return x.Sex
|
||||||
}
|
}
|
||||||
return 0
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *AccountInfo) GetTitle() string {
|
func (x *AccountInfo) GetTitle() string {
|
||||||
@ -7891,7 +7891,7 @@ var file_api_account_account_proto_rawDesc = []byte{
|
|||||||
0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
|
0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
|
||||||
0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
||||||
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73,
|
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73,
|
||||||
0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x20, 0x0a,
|
0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x20, 0x0a,
|
||||||
0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01,
|
0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01,
|
||||||
0x28, 0x09, 0x52, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12,
|
0x28, 0x09, 0x52, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12,
|
||||||
0x22, 0x0a, 0x0c, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18,
|
0x22, 0x0a, 0x0c, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18,
|
||||||
@ -7934,7 +7934,7 @@ var file_api_account_account_proto_rawDesc = []byte{
|
|||||||
0x61, 0x6d, 0x65, 0x4f, 0x72, 0x4e, 0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d,
|
0x61, 0x6d, 0x65, 0x4f, 0x72, 0x4e, 0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d,
|
||||||
0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x4f, 0x72, 0x4e, 0x6f, 0x74, 0x12, 0x12, 0x0a,
|
0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x4f, 0x72, 0x4e, 0x6f, 0x74, 0x12, 0x12, 0x0a,
|
||||||
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
|
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
|
||||||
0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03,
|
0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
|
||||||
0x73, 0x65, 0x78, 0x12, 0x22, 0x0a, 0x0c, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x54,
|
0x73, 0x65, 0x78, 0x12, 0x22, 0x0a, 0x0c, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x54,
|
||||||
0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x64, 0x6f, 0x63, 0x75, 0x6d,
|
0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x64, 0x6f, 0x63, 0x75, 0x6d,
|
||||||
0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x75, 0x64, 0x69, 0x74,
|
0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x75, 0x64, 0x69, 0x74,
|
||||||
@ -7948,7 +7948,7 @@ var file_api_account_account_proto_rawDesc = []byte{
|
|||||||
0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
|
0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
|
||||||
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03,
|
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03,
|
||||||
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
|
||||||
0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x20, 0x0a, 0x0b,
|
0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x20, 0x0a, 0x0b,
|
||||||
0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28,
|
0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28,
|
||||||
0x09, 0x52, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x22,
|
0x09, 0x52, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x22,
|
||||||
0x0a, 0x0c, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06,
|
0x0a, 0x0c, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06,
|
||||||
@ -7984,7 +7984,7 @@ var file_api_account_account_proto_rawDesc = []byte{
|
|||||||
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
||||||
0x28, 0x04, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
|
0x28, 0x04, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
|
||||||
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
|
||||||
0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x20, 0x0a, 0x0b,
|
0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x20, 0x0a, 0x0b,
|
||||||
0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28,
|
0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28,
|
||||||
0x09, 0x52, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x22,
|
0x09, 0x52, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x22,
|
||||||
0x0a, 0x0c, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05,
|
0x0a, 0x0c, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05,
|
||||||
@ -8536,7 +8536,7 @@ var file_api_account_account_proto_rawDesc = []byte{
|
|||||||
0x69, 0x72, 0x74, 0x68, 0x44, 0x61, 0x74, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
|
0x69, 0x72, 0x74, 0x68, 0x44, 0x61, 0x74, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
|
||||||
0x62, 0x69, 0x72, 0x74, 0x68, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x41, 0x67,
|
0x62, 0x69, 0x72, 0x74, 0x68, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x41, 0x67,
|
||||||
0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03,
|
0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03,
|
||||||
0x53, 0x65, 0x78, 0x18, 0x15, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x14,
|
0x53, 0x65, 0x78, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x14,
|
||||||
0x0a, 0x05, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74,
|
0x0a, 0x05, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74,
|
||||||
0x69, 0x74, 0x6c, 0x65, 0x12, 0x35, 0x0a, 0x0b, 0x44, 0x65, 0x70, 0x61, 0x72, 0x74, 0x6d, 0x65,
|
0x69, 0x74, 0x6c, 0x65, 0x12, 0x35, 0x0a, 0x0b, 0x44, 0x65, 0x70, 0x61, 0x72, 0x74, 0x6d, 0x65,
|
||||||
0x6e, 0x74, 0x73, 0x18, 0x17, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x63, 0x63, 0x6f,
|
0x6e, 0x74, 0x73, 0x18, 0x17, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x63, 0x63, 0x6f,
|
||||||
|
@ -125,7 +125,7 @@ message UserListInfo{
|
|||||||
uint64 id = 1;
|
uint64 id = 1;
|
||||||
int32 status = 2;
|
int32 status = 2;
|
||||||
string name = 3;
|
string name = 3;
|
||||||
int32 sex = 4;
|
string sex = 4;
|
||||||
string nationality = 5;
|
string nationality = 5;
|
||||||
int32 documentType =6;
|
int32 documentType =6;
|
||||||
string certificatePicture = 7;
|
string certificatePicture = 7;
|
||||||
@ -148,7 +148,7 @@ message UserListRequest{
|
|||||||
string subNum = 2;
|
string subNum = 2;
|
||||||
int32 realNameOrNot = 3;
|
int32 realNameOrNot = 3;
|
||||||
string name = 4;
|
string name = 4;
|
||||||
int32 sex = 5;
|
string sex = 5;
|
||||||
int32 documentType = 6;
|
int32 documentType = 6;
|
||||||
int32 auditStatus = 7;
|
int32 auditStatus = 7;
|
||||||
uint64 page = 8;
|
uint64 page = 8;
|
||||||
@ -158,7 +158,7 @@ message UserInfoResponse{
|
|||||||
uint64 id = 1;
|
uint64 id = 1;
|
||||||
int32 status = 2;
|
int32 status = 2;
|
||||||
string name = 3;
|
string name = 3;
|
||||||
int32 sex = 4;
|
string sex = 4;
|
||||||
string nationality = 5;
|
string nationality = 5;
|
||||||
int32 documentType =6;
|
int32 documentType =6;
|
||||||
string certificatePicture = 7;
|
string certificatePicture = 7;
|
||||||
@ -180,7 +180,7 @@ message RealNameResponse{
|
|||||||
message RealNameRequest{
|
message RealNameRequest{
|
||||||
uint64 id = 1;
|
uint64 id = 1;
|
||||||
string name = 2;
|
string name = 2;
|
||||||
int32 sex = 3;
|
string sex = 3;
|
||||||
string nationality = 4;
|
string nationality = 4;
|
||||||
int32 documentType = 5;
|
int32 documentType = 5;
|
||||||
string certificatePicture = 6;
|
string certificatePicture = 6;
|
||||||
@ -635,7 +635,7 @@ message AccountInfo {
|
|||||||
string JobNum = 18 [json_name = "jobNum"];
|
string JobNum = 18 [json_name = "jobNum"];
|
||||||
string BirthDate = 19 [json_name = "birth_date"];
|
string BirthDate = 19 [json_name = "birth_date"];
|
||||||
uint64 Age = 20 [json_name = "age"];
|
uint64 Age = 20 [json_name = "age"];
|
||||||
uint64 Sex = 21 [json_name = "sex"];
|
string Sex = 21 [json_name = "sex"];
|
||||||
string Title = 22 [json_name = "title"];
|
string Title = 22 [json_name = "title"];
|
||||||
repeated Department Departments = 23 [json_name = "departments"];
|
repeated Department Departments = 23 [json_name = "departments"];
|
||||||
string Ip = 24 [json_name = "ip"];
|
string Ip = 24 [json_name = "ip"];
|
||||||
|
@ -27,9 +27,9 @@ type CommonResponse struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Msg string `protobuf:"bytes,1,opt,name=msg,proto3" json:"msg"`
|
Msg string `protobuf:"bytes,1,opt,name=msg,proto3" json:"msg,omitempty"`
|
||||||
Uuid string `protobuf:"bytes,2,opt,name=uuid,proto3" json:"uuid"`
|
Uuid string `protobuf:"bytes,2,opt,name=uuid,proto3" json:"uuid,omitempty"`
|
||||||
OrderNo string `protobuf:"bytes,3,opt,name=orderNo,proto3" json:"orderNo"`
|
OrderNo string `protobuf:"bytes,3,opt,name=orderNo,proto3" json:"orderNo,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *CommonResponse) Reset() {
|
func (x *CommonResponse) Reset() {
|
||||||
@ -88,18 +88,18 @@ type BundleProfile struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid"`
|
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
|
||||||
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
||||||
Price float32 `protobuf:"fixed32,3,opt,name=price,proto3" json:"price"`
|
Price float32 `protobuf:"fixed32,3,opt,name=price,proto3" json:"price,omitempty"`
|
||||||
PriceType int64 `protobuf:"varint,4,opt,name=priceType,proto3" json:"priceType"`
|
PriceType int64 `protobuf:"varint,4,opt,name=priceType,proto3" json:"priceType,omitempty"`
|
||||||
Content string `protobuf:"bytes,5,opt,name=content,proto3" json:"content"`
|
Content string `protobuf:"bytes,5,opt,name=content,proto3" json:"content,omitempty"`
|
||||||
Contract string `protobuf:"bytes,6,opt,name=contract,proto3" json:"contract"`
|
Contract string `protobuf:"bytes,6,opt,name=contract,proto3" json:"contract,omitempty"`
|
||||||
Language string `protobuf:"bytes,7,opt,name=language,proto3" json:"language"`
|
Language string `protobuf:"bytes,7,opt,name=language,proto3" json:"language,omitempty"`
|
||||||
CreatedAt string `protobuf:"bytes,8,opt,name=createdAt,proto3" json:"createdAt"`
|
CreatedAt string `protobuf:"bytes,8,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
|
||||||
UpdatedAt string `protobuf:"bytes,9,opt,name=updatedAt,proto3" json:"updatedAt"`
|
UpdatedAt string `protobuf:"bytes,9,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
|
||||||
CompanySign string `protobuf:"bytes,10,opt,name=companySign,proto3" json:"companySign"`
|
CompanySign string `protobuf:"bytes,10,opt,name=companySign,proto3" json:"companySign,omitempty"`
|
||||||
ContractDuration int64 `protobuf:"varint,11,opt,name=contractDuration,proto3" json:"contractDuration"`
|
ContractDuration int64 `protobuf:"varint,11,opt,name=contractDuration,proto3" json:"contractDuration,omitempty"`
|
||||||
BundleCommonUid string `protobuf:"bytes,12,opt,name=bundleCommonUid,proto3" json:"bundleCommonUid"`
|
BundleCommonUid string `protobuf:"bytes,12,opt,name=bundleCommonUid,proto3" json:"bundleCommonUid,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *BundleProfile) Reset() {
|
func (x *BundleProfile) Reset() {
|
||||||
@ -221,7 +221,7 @@ type DelBundleRequest struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid"`
|
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *DelBundleRequest) Reset() {
|
func (x *DelBundleRequest) Reset() {
|
||||||
@ -266,11 +266,11 @@ type BundleListRequest struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
|
Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
|
||||||
PageSize int32 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize"`
|
PageSize int32 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
|
||||||
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
|
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
|
||||||
Content string `protobuf:"bytes,4,opt,name=content,proto3" json:"content"`
|
Content string `protobuf:"bytes,4,opt,name=content,proto3" json:"content,omitempty"`
|
||||||
Language string `protobuf:"bytes,5,opt,name=language,proto3" json:"language"`
|
Language string `protobuf:"bytes,5,opt,name=language,proto3" json:"language,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *BundleListRequest) Reset() {
|
func (x *BundleListRequest) Reset() {
|
||||||
@ -343,8 +343,8 @@ type BundleListResponse struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Bundles []*BundleProfile `protobuf:"bytes,1,rep,name=bundles,proto3" json:"bundles"`
|
Bundles []*BundleProfile `protobuf:"bytes,1,rep,name=bundles,proto3" json:"bundles,omitempty"`
|
||||||
Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
|
Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *BundleListResponse) Reset() {
|
func (x *BundleListResponse) Reset() {
|
||||||
@ -396,7 +396,7 @@ type BundleDetailRequest struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid"`
|
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *BundleDetailRequest) Reset() {
|
func (x *BundleDetailRequest) Reset() {
|
||||||
@ -441,8 +441,8 @@ type BundleDetailResponse struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Bundle *BundleProfile `protobuf:"bytes,1,opt,name=bundle,proto3" json:"bundle"`
|
Bundle *BundleProfile `protobuf:"bytes,1,opt,name=bundle,proto3" json:"bundle,omitempty"`
|
||||||
Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg"`
|
Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *BundleDetailResponse) Reset() {
|
func (x *BundleDetailResponse) Reset() {
|
||||||
@ -494,38 +494,38 @@ type OrderRecord struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid"`
|
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
|
||||||
BundleUuid string `protobuf:"bytes,2,opt,name=bundleUuid,proto3" json:"bundleUuid"`
|
BundleUuid string `protobuf:"bytes,2,opt,name=bundleUuid,proto3" json:"bundleUuid,omitempty"`
|
||||||
CustomerID string `protobuf:"bytes,3,opt,name=customerID,proto3" json:"customerID"`
|
CustomerID string `protobuf:"bytes,3,opt,name=customerID,proto3" json:"customerID,omitempty"`
|
||||||
CustomerNum string `protobuf:"bytes,4,opt,name=customerNum,proto3" json:"customerNum"`
|
CustomerNum string `protobuf:"bytes,4,opt,name=customerNum,proto3" json:"customerNum,omitempty"`
|
||||||
CustomerName string `protobuf:"bytes,5,opt,name=customerName,proto3" json:"customerName"`
|
CustomerName string `protobuf:"bytes,5,opt,name=customerName,proto3" json:"customerName,omitempty"`
|
||||||
Amount float32 `protobuf:"fixed32,6,opt,name=amount,proto3" json:"amount"`
|
Amount float32 `protobuf:"fixed32,6,opt,name=amount,proto3" json:"amount,omitempty"`
|
||||||
AmountType int64 `protobuf:"varint,7,opt,name=amountType,proto3" json:"amountType"`
|
AmountType int64 `protobuf:"varint,7,opt,name=amountType,proto3" json:"amountType,omitempty"`
|
||||||
SignContract string `protobuf:"bytes,8,opt,name=signContract,proto3" json:"signContract"`
|
SignContract string `protobuf:"bytes,8,opt,name=signContract,proto3" json:"signContract,omitempty"`
|
||||||
Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"`
|
Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature,omitempty"`
|
||||||
SignedTime string `protobuf:"bytes,10,opt,name=signedTime,proto3" json:"signedTime"`
|
SignedTime string `protobuf:"bytes,10,opt,name=signedTime,proto3" json:"signedTime,omitempty"`
|
||||||
PayType int64 `protobuf:"varint,11,opt,name=payType,proto3" json:"payType"`
|
PayType int64 `protobuf:"varint,11,opt,name=payType,proto3" json:"payType,omitempty"`
|
||||||
PayTime string `protobuf:"bytes,12,opt,name=payTime,proto3" json:"payTime"`
|
PayTime string `protobuf:"bytes,12,opt,name=payTime,proto3" json:"payTime,omitempty"`
|
||||||
CheckoutSessionId string `protobuf:"bytes,13,opt,name=checkoutSessionId,proto3" json:"checkoutSessionId"`
|
CheckoutSessionId string `protobuf:"bytes,13,opt,name=checkoutSessionId,proto3" json:"checkoutSessionId,omitempty"`
|
||||||
CheckoutSessionUrl string `protobuf:"bytes,14,opt,name=checkoutSessionUrl,proto3" json:"checkoutSessionUrl"`
|
CheckoutSessionUrl string `protobuf:"bytes,14,opt,name=checkoutSessionUrl,proto3" json:"checkoutSessionUrl,omitempty"`
|
||||||
Status int64 `protobuf:"varint,15,opt,name=status,proto3" json:"status"`
|
Status int64 `protobuf:"varint,15,opt,name=status,proto3" json:"status,omitempty"`
|
||||||
OrderNo string `protobuf:"bytes,16,opt,name=orderNo,proto3" json:"orderNo"`
|
OrderNo string `protobuf:"bytes,16,opt,name=orderNo,proto3" json:"orderNo,omitempty"`
|
||||||
BundleName string `protobuf:"bytes,17,opt,name=bundleName,proto3" json:"bundleName"`
|
BundleName string `protobuf:"bytes,17,opt,name=bundleName,proto3" json:"bundleName,omitempty"`
|
||||||
ContractNo string `protobuf:"bytes,18,opt,name=contractNo,proto3" json:"contractNo"`
|
ContractNo string `protobuf:"bytes,18,opt,name=contractNo,proto3" json:"contractNo,omitempty"`
|
||||||
ValueAddBundleUuid string `protobuf:"bytes,19,opt,name=valueAddBundleUuid,proto3" json:"valueAddBundleUuid"` //增值套餐UUID
|
ValueAddBundleUuid string `protobuf:"bytes,19,opt,name=valueAddBundleUuid,proto3" json:"valueAddBundleUuid,omitempty"` //增值套餐UUID
|
||||||
ValueAddBundleAmount float32 `protobuf:"fixed32,20,opt,name=valueAddBundleAmount,proto3" json:"valueAddBundleAmount"` //增值套餐金额
|
ValueAddBundleAmount float32 `protobuf:"fixed32,20,opt,name=valueAddBundleAmount,proto3" json:"valueAddBundleAmount,omitempty"` //增值套餐金额
|
||||||
ValueAddOriginalPrice float32 `protobuf:"fixed32,21,opt,name=valueAddOriginalPrice,proto3" json:"valueAddOriginalPrice"` //原单价
|
ValueAddOriginalPrice float32 `protobuf:"fixed32,21,opt,name=valueAddOriginalPrice,proto3" json:"valueAddOriginalPrice,omitempty"` //原单价
|
||||||
ValueAddDiscountPrice float32 `protobuf:"fixed32,22,opt,name=valueAddDiscountPrice,proto3" json:"valueAddDiscountPrice"` //优惠单价
|
ValueAddDiscountPrice float32 `protobuf:"fixed32,22,opt,name=valueAddDiscountPrice,proto3" json:"valueAddDiscountPrice,omitempty"` //优惠单价
|
||||||
ValueAddSavedAmount float32 `protobuf:"fixed32,23,opt,name=valueAddSavedAmount,proto3" json:"valueAddSavedAmount"` //节省金额
|
ValueAddSavedAmount float32 `protobuf:"fixed32,23,opt,name=valueAddSavedAmount,proto3" json:"valueAddSavedAmount,omitempty"` //节省金额
|
||||||
Num int32 `protobuf:"varint,24,opt,name=num,proto3" json:"num"`
|
Num int32 `protobuf:"varint,24,opt,name=num,proto3" json:"num,omitempty"`
|
||||||
TotalAmount float32 `protobuf:"fixed32,25,opt,name=totalAmount,proto3" json:"totalAmount"` //总金额
|
TotalAmount float32 `protobuf:"fixed32,25,opt,name=totalAmount,proto3" json:"totalAmount,omitempty"` //总金额
|
||||||
Sex int32 `protobuf:"varint,26,opt,name=sex,proto3" json:"sex"`
|
Sex string `protobuf:"bytes,26,opt,name=sex,proto3" json:"sex,omitempty"`
|
||||||
Nationality string `protobuf:"bytes,27,opt,name=nationality,proto3" json:"nationality"`
|
Nationality string `protobuf:"bytes,27,opt,name=nationality,proto3" json:"nationality,omitempty"`
|
||||||
CertificatePicture string `protobuf:"bytes,28,opt,name=certificatePicture,proto3" json:"certificatePicture"`
|
CertificatePicture string `protobuf:"bytes,28,opt,name=certificatePicture,proto3" json:"certificatePicture,omitempty"`
|
||||||
PlaceOfResidence string `protobuf:"bytes,29,opt,name=placeOfResidence,proto3" json:"placeOfResidence"`
|
PlaceOfResidence string `protobuf:"bytes,29,opt,name=placeOfResidence,proto3" json:"placeOfResidence,omitempty"`
|
||||||
GroupPhoto string `protobuf:"bytes,30,opt,name=groupPhoto,proto3" json:"groupPhoto"`
|
GroupPhoto string `protobuf:"bytes,30,opt,name=groupPhoto,proto3" json:"groupPhoto,omitempty"`
|
||||||
BundleCommonUid string `protobuf:"bytes,31,opt,name=bundleCommonUid,proto3" json:"bundleCommonUid"`
|
BundleCommonUid string `protobuf:"bytes,31,opt,name=bundleCommonUid,proto3" json:"bundleCommonUid,omitempty"`
|
||||||
AddBundleCommonUid string `protobuf:"bytes,32,opt,name=addBundleCommonUid,proto3" json:"addBundleCommonUid"`
|
AddBundleCommonUid string `protobuf:"bytes,32,opt,name=addBundleCommonUid,proto3" json:"addBundleCommonUid,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *OrderRecord) Reset() {
|
func (x *OrderRecord) Reset() {
|
||||||
@ -733,11 +733,11 @@ func (x *OrderRecord) GetTotalAmount() float32 {
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *OrderRecord) GetSex() int32 {
|
func (x *OrderRecord) GetSex() string {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Sex
|
return x.Sex
|
||||||
}
|
}
|
||||||
return 0
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *OrderRecord) GetNationality() string {
|
func (x *OrderRecord) GetNationality() string {
|
||||||
@ -787,20 +787,20 @@ type OrderRecordsRequest struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
|
Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
|
||||||
PageSize int32 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize"`
|
PageSize int32 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
|
||||||
CustomerNum string `protobuf:"bytes,3,opt,name=customerNum,proto3" json:"customerNum"`
|
CustomerNum string `protobuf:"bytes,3,opt,name=customerNum,proto3" json:"customerNum,omitempty"`
|
||||||
CustomerName string `protobuf:"bytes,4,opt,name=customerName,proto3" json:"customerName"`
|
CustomerName string `protobuf:"bytes,4,opt,name=customerName,proto3" json:"customerName,omitempty"`
|
||||||
BundleUUID string `protobuf:"bytes,5,opt,name=bundleUUID,proto3" json:"bundleUUID"`
|
BundleUUID string `protobuf:"bytes,5,opt,name=bundleUUID,proto3" json:"bundleUUID,omitempty"`
|
||||||
OrderNo string `protobuf:"bytes,6,opt,name=orderNo,proto3" json:"orderNo"`
|
OrderNo string `protobuf:"bytes,6,opt,name=orderNo,proto3" json:"orderNo,omitempty"`
|
||||||
Status int64 `protobuf:"varint,7,opt,name=status,proto3" json:"status"`
|
Status int64 `protobuf:"varint,7,opt,name=status,proto3" json:"status,omitempty"`
|
||||||
BundleName string `protobuf:"bytes,8,opt,name=bundleName,proto3" json:"bundleName"`
|
BundleName string `protobuf:"bytes,8,opt,name=bundleName,proto3" json:"bundleName,omitempty"`
|
||||||
StartSignedTime string `protobuf:"bytes,9,opt,name=startSignedTime,proto3" json:"startSignedTime"`
|
StartSignedTime string `protobuf:"bytes,9,opt,name=startSignedTime,proto3" json:"startSignedTime,omitempty"`
|
||||||
EndSignedTime string `protobuf:"bytes,10,opt,name=endSignedTime,proto3" json:"endSignedTime"`
|
EndSignedTime string `protobuf:"bytes,10,opt,name=endSignedTime,proto3" json:"endSignedTime,omitempty"`
|
||||||
StartPayTime string `protobuf:"bytes,11,opt,name=startPayTime,proto3" json:"startPayTime"`
|
StartPayTime string `protobuf:"bytes,11,opt,name=startPayTime,proto3" json:"startPayTime,omitempty"`
|
||||||
EndPayTime string `protobuf:"bytes,12,opt,name=endPayTime,proto3" json:"endPayTime"`
|
EndPayTime string `protobuf:"bytes,12,opt,name=endPayTime,proto3" json:"endPayTime,omitempty"`
|
||||||
CustomerID string `protobuf:"bytes,13,opt,name=customerID,proto3" json:"customerID"`
|
CustomerID string `protobuf:"bytes,13,opt,name=customerID,proto3" json:"customerID,omitempty"`
|
||||||
IsHaveValueAdd int64 `protobuf:"varint,14,opt,name=isHaveValueAdd,proto3" json:"isHaveValueAdd"` //有无增值选项
|
IsHaveValueAdd int64 `protobuf:"varint,14,opt,name=isHaveValueAdd,proto3" json:"isHaveValueAdd,omitempty"` //有无增值选项
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *OrderRecordsRequest) Reset() {
|
func (x *OrderRecordsRequest) Reset() {
|
||||||
@ -936,8 +936,8 @@ type OrderRecordsResponse struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
OrderRecords []*OrderRecord `protobuf:"bytes,1,rep,name=orderRecords,proto3" json:"orderRecords"`
|
OrderRecords []*OrderRecord `protobuf:"bytes,1,rep,name=orderRecords,proto3" json:"orderRecords,omitempty"`
|
||||||
Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
|
Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *OrderRecordsResponse) Reset() {
|
func (x *OrderRecordsResponse) Reset() {
|
||||||
@ -989,9 +989,9 @@ type OrderRecordsDetailRequest struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid"`
|
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
|
||||||
OrderNo string `protobuf:"bytes,2,opt,name=orderNo,proto3" json:"orderNo"`
|
OrderNo string `protobuf:"bytes,2,opt,name=orderNo,proto3" json:"orderNo,omitempty"`
|
||||||
CustomerID string `protobuf:"bytes,3,opt,name=customerID,proto3" json:"customerID"`
|
CustomerID string `protobuf:"bytes,3,opt,name=customerID,proto3" json:"customerID,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *OrderRecordsDetailRequest) Reset() {
|
func (x *OrderRecordsDetailRequest) Reset() {
|
||||||
@ -1050,8 +1050,8 @@ type OrderRecordsDetailResponse struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
OrderRecord *OrderRecord `protobuf:"bytes,1,opt,name=orderRecord,proto3" json:"orderRecord"`
|
OrderRecord *OrderRecord `protobuf:"bytes,1,opt,name=orderRecord,proto3" json:"orderRecord,omitempty"`
|
||||||
Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg"`
|
Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *OrderRecordsDetailResponse) Reset() {
|
func (x *OrderRecordsDetailResponse) Reset() {
|
||||||
@ -1104,16 +1104,16 @@ type ValueAddBundleProfile struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid"`
|
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
|
||||||
Num int32 `protobuf:"varint,2,opt,name=num,proto3" json:"num"`
|
Num int32 `protobuf:"varint,2,opt,name=num,proto3" json:"num,omitempty"`
|
||||||
OriginalPrice float32 `protobuf:"fixed32,3,opt,name=originalPrice,proto3" json:"originalPrice"`
|
OriginalPrice float32 `protobuf:"fixed32,3,opt,name=originalPrice,proto3" json:"originalPrice,omitempty"`
|
||||||
DiscountPrice float32 `protobuf:"fixed32,4,opt,name=discountPrice,proto3" json:"discountPrice"`
|
DiscountPrice float32 `protobuf:"fixed32,4,opt,name=discountPrice,proto3" json:"discountPrice,omitempty"`
|
||||||
TotalPrice float32 `protobuf:"fixed32,6,opt,name=totalPrice,proto3" json:"totalPrice"`
|
TotalPrice float32 `protobuf:"fixed32,6,opt,name=totalPrice,proto3" json:"totalPrice,omitempty"`
|
||||||
SavedAmount float32 `protobuf:"fixed32,7,opt,name=savedAmount,proto3" json:"savedAmount"`
|
SavedAmount float32 `protobuf:"fixed32,7,opt,name=savedAmount,proto3" json:"savedAmount,omitempty"`
|
||||||
DiscountPriceStatus bool `protobuf:"varint,8,opt,name=discountPriceStatus,proto3" json:"discountPriceStatus"`
|
DiscountPriceStatus bool `protobuf:"varint,8,opt,name=discountPriceStatus,proto3" json:"discountPriceStatus,omitempty"`
|
||||||
Choose bool `protobuf:"varint,9,opt,name=choose,proto3" json:"choose"`
|
Choose bool `protobuf:"varint,9,opt,name=choose,proto3" json:"choose,omitempty"`
|
||||||
Status bool `protobuf:"varint,10,opt,name=status,proto3" json:"status"`
|
Status bool `protobuf:"varint,10,opt,name=status,proto3" json:"status,omitempty"`
|
||||||
AddBundleCommonUid string `protobuf:"bytes,11,opt,name=addBundleCommonUid,proto3" json:"addBundleCommonUid"`
|
AddBundleCommonUid string `protobuf:"bytes,11,opt,name=addBundleCommonUid,proto3" json:"addBundleCommonUid,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *ValueAddBundleProfile) Reset() {
|
func (x *ValueAddBundleProfile) Reset() {
|
||||||
@ -1221,7 +1221,7 @@ type CreateValueAddBundleRequest struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Num int32 `protobuf:"varint,1,opt,name=num,proto3" json:"num"`
|
Num int32 `protobuf:"varint,1,opt,name=num,proto3" json:"num,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *CreateValueAddBundleRequest) Reset() {
|
func (x *CreateValueAddBundleRequest) Reset() {
|
||||||
@ -1266,10 +1266,10 @@ type CreateValueAddBundleResponse struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid"`
|
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
|
||||||
TotalPrice float32 `protobuf:"fixed32,2,opt,name=totalPrice,proto3" json:"totalPrice"`
|
TotalPrice float32 `protobuf:"fixed32,2,opt,name=totalPrice,proto3" json:"totalPrice,omitempty"`
|
||||||
SavedAmount float32 `protobuf:"fixed32,3,opt,name=savedAmount,proto3" json:"savedAmount"`
|
SavedAmount float32 `protobuf:"fixed32,3,opt,name=savedAmount,proto3" json:"savedAmount,omitempty"`
|
||||||
Msg string `protobuf:"bytes,4,opt,name=msg,proto3" json:"msg"`
|
Msg string `protobuf:"bytes,4,opt,name=msg,proto3" json:"msg,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *CreateValueAddBundleResponse) Reset() {
|
func (x *CreateValueAddBundleResponse) Reset() {
|
||||||
@ -1336,9 +1336,9 @@ type ValueAddBundleListRequest struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId"`
|
UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
|
||||||
BundleUuid string `protobuf:"bytes,2,opt,name=bundleUuid,proto3" json:"bundleUuid"`
|
BundleUuid string `protobuf:"bytes,2,opt,name=bundleUuid,proto3" json:"bundleUuid,omitempty"`
|
||||||
PriceType int32 `protobuf:"varint,3,opt,name=priceType,proto3" json:"priceType"`
|
PriceType int32 `protobuf:"varint,3,opt,name=priceType,proto3" json:"priceType,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *ValueAddBundleListRequest) Reset() {
|
func (x *ValueAddBundleListRequest) Reset() {
|
||||||
@ -1397,14 +1397,14 @@ type ValueAddBundleListResponse struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
OriginalPrice float32 `protobuf:"fixed32,1,opt,name=originalPrice,proto3" json:"originalPrice"`
|
OriginalPrice float32 `protobuf:"fixed32,1,opt,name=originalPrice,proto3" json:"originalPrice,omitempty"`
|
||||||
Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
|
Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
|
||||||
Data []*ValueAddBundleProfile `protobuf:"bytes,3,rep,name=data,proto3" json:"data"`
|
Data []*ValueAddBundleProfile `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
|
||||||
Status bool `protobuf:"varint,4,opt,name=status,proto3" json:"status"`
|
Status bool `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
|
||||||
Num int32 `protobuf:"varint,5,opt,name=num,proto3" json:"num"`
|
Num int32 `protobuf:"varint,5,opt,name=num,proto3" json:"num,omitempty"`
|
||||||
Price float32 `protobuf:"fixed32,6,opt,name=price,proto3" json:"price"`
|
Price float32 `protobuf:"fixed32,6,opt,name=price,proto3" json:"price,omitempty"`
|
||||||
OrderNo bool `protobuf:"varint,7,opt,name=orderNo,proto3" json:"orderNo"`
|
OrderNo bool `protobuf:"varint,7,opt,name=orderNo,proto3" json:"orderNo,omitempty"`
|
||||||
Msg string `protobuf:"bytes,8,opt,name=msg,proto3" json:"msg"`
|
Msg string `protobuf:"bytes,8,opt,name=msg,proto3" json:"msg,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *ValueAddBundleListResponse) Reset() {
|
func (x *ValueAddBundleListResponse) Reset() {
|
||||||
@ -1498,7 +1498,7 @@ type ValueAddBundleDetailRequest struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid"`
|
Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *ValueAddBundleDetailRequest) Reset() {
|
func (x *ValueAddBundleDetailRequest) Reset() {
|
||||||
@ -1543,9 +1543,9 @@ type ValueAddBundleDetailResponse struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Data *ValueAddBundleProfile `protobuf:"bytes,1,opt,name=data,proto3" json:"data"`
|
Data *ValueAddBundleProfile `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
|
||||||
PayTime string `protobuf:"bytes,2,opt,name=payTime,proto3" json:"payTime"`
|
PayTime string `protobuf:"bytes,2,opt,name=payTime,proto3" json:"payTime,omitempty"`
|
||||||
Msg string `protobuf:"bytes,3,opt,name=msg,proto3" json:"msg"`
|
Msg string `protobuf:"bytes,3,opt,name=msg,proto3" json:"msg,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *ValueAddBundleDetailResponse) Reset() {
|
func (x *ValueAddBundleDetailResponse) Reset() {
|
||||||
@ -1716,7 +1716,7 @@ var file_pb_bundle_proto_rawDesc = []byte{
|
|||||||
0x75, 0x6d, 0x18, 0x18, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x20, 0x0a,
|
0x75, 0x6d, 0x18, 0x18, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x20, 0x0a,
|
||||||
0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x19, 0x20, 0x01,
|
0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x19, 0x20, 0x01,
|
||||||
0x28, 0x02, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12,
|
0x28, 0x02, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12,
|
||||||
0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x73, 0x65,
|
0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x65,
|
||||||
0x78, 0x12, 0x20, 0x0a, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79,
|
0x78, 0x12, 0x20, 0x0a, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79,
|
||||||
0x18, 0x1b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
|
0x18, 0x1b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
|
||||||
0x69, 0x74, 0x79, 0x12, 0x2e, 0x0a, 0x12, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
|
0x69, 0x74, 0x79, 0x12, 0x2e, 0x0a, 0x12, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
|
||||||
|
Loading…
Reference in New Issue
Block a user