refactor: remove redundant name fields from order service
This commit is contained in:
+70
-194
@@ -26,11 +26,8 @@ type Orders struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` //id
|
||||
ConsumerId int64 `protobuf:"varint,2,opt,name=consumerId,proto3" json:"consumerId,omitempty"` //consumerId
|
||||
ConsumerName string `protobuf:"bytes,3,opt,name=consumerName,proto3" json:"consumerName,omitempty"` //consumerName
|
||||
PlayerId int64 `protobuf:"varint,4,opt,name=playerId,proto3" json:"playerId,omitempty"` //playerId
|
||||
PlayerName string `protobuf:"bytes,5,opt,name=playerName,proto3" json:"playerName,omitempty"` //playerName
|
||||
ShopId *int64 `protobuf:"varint,6,opt,name=shopId,proto3,oneof" json:"shopId,omitempty"` //shopId
|
||||
ShopName *string `protobuf:"bytes,7,opt,name=shopName,proto3,oneof" json:"shopName,omitempty"` //shopName
|
||||
ServiceSnapshot string `protobuf:"bytes,8,opt,name=serviceSnapshot,proto3" json:"serviceSnapshot,omitempty"` //serviceSnapshot
|
||||
Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status,omitempty"` //status
|
||||
TotalPrice string `protobuf:"bytes,10,opt,name=totalPrice,proto3" json:"totalPrice,omitempty"` //totalPrice
|
||||
@@ -92,13 +89,6 @@ func (x *Orders) GetConsumerId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *Orders) GetConsumerName() string {
|
||||
if x != nil {
|
||||
return x.ConsumerName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *Orders) GetPlayerId() int64 {
|
||||
if x != nil {
|
||||
return x.PlayerId
|
||||
@@ -106,13 +96,6 @@ func (x *Orders) GetPlayerId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *Orders) GetPlayerName() string {
|
||||
if x != nil {
|
||||
return x.PlayerName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *Orders) GetShopId() int64 {
|
||||
if x != nil && x.ShopId != nil {
|
||||
return *x.ShopId
|
||||
@@ -120,13 +103,6 @@ func (x *Orders) GetShopId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *Orders) GetShopName() string {
|
||||
if x != nil && x.ShopName != nil {
|
||||
return *x.ShopName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *Orders) GetServiceSnapshot() string {
|
||||
if x != nil {
|
||||
return x.ServiceSnapshot
|
||||
@@ -222,11 +198,8 @@ type AddOrdersReq struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` //id
|
||||
ConsumerId int64 `protobuf:"varint,2,opt,name=consumerId,proto3" json:"consumerId,omitempty"` //consumerId
|
||||
ConsumerName string `protobuf:"bytes,3,opt,name=consumerName,proto3" json:"consumerName,omitempty"` //consumerName
|
||||
PlayerId int64 `protobuf:"varint,4,opt,name=playerId,proto3" json:"playerId,omitempty"` //playerId
|
||||
PlayerName string `protobuf:"bytes,5,opt,name=playerName,proto3" json:"playerName,omitempty"` //playerName
|
||||
ShopId *int64 `protobuf:"varint,6,opt,name=shopId,proto3,oneof" json:"shopId,omitempty"` //shopId
|
||||
ShopName *string `protobuf:"bytes,7,opt,name=shopName,proto3,oneof" json:"shopName,omitempty"` //shopName
|
||||
ServiceSnapshot string `protobuf:"bytes,8,opt,name=serviceSnapshot,proto3" json:"serviceSnapshot,omitempty"` //serviceSnapshot
|
||||
Status *string `protobuf:"bytes,9,opt,name=status,proto3,oneof" json:"status,omitempty"` //status
|
||||
TotalPrice string `protobuf:"bytes,10,opt,name=totalPrice,proto3" json:"totalPrice,omitempty"` //totalPrice
|
||||
@@ -288,13 +261,6 @@ func (x *AddOrdersReq) GetConsumerId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *AddOrdersReq) GetConsumerName() string {
|
||||
if x != nil {
|
||||
return x.ConsumerName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *AddOrdersReq) GetPlayerId() int64 {
|
||||
if x != nil {
|
||||
return x.PlayerId
|
||||
@@ -302,13 +268,6 @@ func (x *AddOrdersReq) GetPlayerId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *AddOrdersReq) GetPlayerName() string {
|
||||
if x != nil {
|
||||
return x.PlayerName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *AddOrdersReq) GetShopId() int64 {
|
||||
if x != nil && x.ShopId != nil {
|
||||
return *x.ShopId
|
||||
@@ -316,13 +275,6 @@ func (x *AddOrdersReq) GetShopId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *AddOrdersReq) GetShopName() string {
|
||||
if x != nil && x.ShopName != nil {
|
||||
return *x.ShopName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *AddOrdersReq) GetServiceSnapshot() string {
|
||||
if x != nil {
|
||||
return x.ServiceSnapshot
|
||||
@@ -462,11 +414,8 @@ type UpdateOrdersReq struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` //id
|
||||
ConsumerId *int64 `protobuf:"varint,2,opt,name=consumerId,proto3,oneof" json:"consumerId,omitempty"` //consumerId
|
||||
ConsumerName *string `protobuf:"bytes,3,opt,name=consumerName,proto3,oneof" json:"consumerName,omitempty"` //consumerName
|
||||
PlayerId *int64 `protobuf:"varint,4,opt,name=playerId,proto3,oneof" json:"playerId,omitempty"` //playerId
|
||||
PlayerName *string `protobuf:"bytes,5,opt,name=playerName,proto3,oneof" json:"playerName,omitempty"` //playerName
|
||||
ShopId *int64 `protobuf:"varint,6,opt,name=shopId,proto3,oneof" json:"shopId,omitempty"` //shopId
|
||||
ShopName *string `protobuf:"bytes,7,opt,name=shopName,proto3,oneof" json:"shopName,omitempty"` //shopName
|
||||
ServiceSnapshot *string `protobuf:"bytes,8,opt,name=serviceSnapshot,proto3,oneof" json:"serviceSnapshot,omitempty"` //serviceSnapshot
|
||||
Status *string `protobuf:"bytes,9,opt,name=status,proto3,oneof" json:"status,omitempty"` //status
|
||||
TotalPrice *string `protobuf:"bytes,10,opt,name=totalPrice,proto3,oneof" json:"totalPrice,omitempty"` //totalPrice
|
||||
@@ -528,13 +477,6 @@ func (x *UpdateOrdersReq) GetConsumerId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *UpdateOrdersReq) GetConsumerName() string {
|
||||
if x != nil && x.ConsumerName != nil {
|
||||
return *x.ConsumerName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *UpdateOrdersReq) GetPlayerId() int64 {
|
||||
if x != nil && x.PlayerId != nil {
|
||||
return *x.PlayerId
|
||||
@@ -542,13 +484,6 @@ func (x *UpdateOrdersReq) GetPlayerId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *UpdateOrdersReq) GetPlayerName() string {
|
||||
if x != nil && x.PlayerName != nil {
|
||||
return *x.PlayerName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *UpdateOrdersReq) GetShopId() int64 {
|
||||
if x != nil && x.ShopId != nil {
|
||||
return *x.ShopId
|
||||
@@ -556,13 +491,6 @@ func (x *UpdateOrdersReq) GetShopId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *UpdateOrdersReq) GetShopName() string {
|
||||
if x != nil && x.ShopName != nil {
|
||||
return *x.ShopName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *UpdateOrdersReq) GetServiceSnapshot() string {
|
||||
if x != nil && x.ServiceSnapshot != nil {
|
||||
return *x.ServiceSnapshot
|
||||
@@ -864,11 +792,8 @@ type SearchOrdersReq struct {
|
||||
Limit int64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"` //limit
|
||||
Id *int64 `protobuf:"varint,3,opt,name=id,proto3,oneof" json:"id,omitempty"` //id
|
||||
ConsumerId *int64 `protobuf:"varint,4,opt,name=consumerId,proto3,oneof" json:"consumerId,omitempty"` //consumerId
|
||||
ConsumerName *string `protobuf:"bytes,5,opt,name=consumerName,proto3,oneof" json:"consumerName,omitempty"` //consumerName
|
||||
PlayerId *int64 `protobuf:"varint,6,opt,name=playerId,proto3,oneof" json:"playerId,omitempty"` //playerId
|
||||
PlayerName *string `protobuf:"bytes,7,opt,name=playerName,proto3,oneof" json:"playerName,omitempty"` //playerName
|
||||
ShopId *int64 `protobuf:"varint,8,opt,name=shopId,proto3,oneof" json:"shopId,omitempty"` //shopId
|
||||
ShopName *string `protobuf:"bytes,9,opt,name=shopName,proto3,oneof" json:"shopName,omitempty"` //shopName
|
||||
ServiceSnapshot *string `protobuf:"bytes,10,opt,name=serviceSnapshot,proto3,oneof" json:"serviceSnapshot,omitempty"` //serviceSnapshot
|
||||
Status *string `protobuf:"bytes,11,opt,name=status,proto3,oneof" json:"status,omitempty"` //status
|
||||
TotalPrice *string `protobuf:"bytes,12,opt,name=totalPrice,proto3,oneof" json:"totalPrice,omitempty"` //totalPrice
|
||||
@@ -944,13 +869,6 @@ func (x *SearchOrdersReq) GetConsumerId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *SearchOrdersReq) GetConsumerName() string {
|
||||
if x != nil && x.ConsumerName != nil {
|
||||
return *x.ConsumerName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *SearchOrdersReq) GetPlayerId() int64 {
|
||||
if x != nil && x.PlayerId != nil {
|
||||
return *x.PlayerId
|
||||
@@ -958,13 +876,6 @@ func (x *SearchOrdersReq) GetPlayerId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *SearchOrdersReq) GetPlayerName() string {
|
||||
if x != nil && x.PlayerName != nil {
|
||||
return *x.PlayerName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *SearchOrdersReq) GetShopId() int64 {
|
||||
if x != nil && x.ShopId != nil {
|
||||
return *x.ShopId
|
||||
@@ -972,13 +883,6 @@ func (x *SearchOrdersReq) GetShopId() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *SearchOrdersReq) GetShopName() string {
|
||||
if x != nil && x.ShopName != nil {
|
||||
return *x.ShopName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *SearchOrdersReq) GetServiceSnapshot() string {
|
||||
if x != nil && x.ServiceSnapshot != nil {
|
||||
return *x.ServiceSnapshot
|
||||
@@ -1851,82 +1755,70 @@ var File_order_proto protoreflect.FileDescriptor
|
||||
|
||||
const file_order_proto_rawDesc = "" +
|
||||
"\n" +
|
||||
"\vorder.proto\x12\x02pb\"\xf2\x05\n" +
|
||||
"\vorder.proto\x12\x02pb\"\x80\x05\n" +
|
||||
"\x06Orders\x12\x0e\n" +
|
||||
"\x02id\x18\x01 \x01(\x03R\x02id\x12\x1e\n" +
|
||||
"\n" +
|
||||
"consumerId\x18\x02 \x01(\x03R\n" +
|
||||
"consumerId\x12\"\n" +
|
||||
"\fconsumerName\x18\x03 \x01(\tR\fconsumerName\x12\x1a\n" +
|
||||
"\bplayerId\x18\x04 \x01(\x03R\bplayerId\x12\x1e\n" +
|
||||
"\n" +
|
||||
"playerName\x18\x05 \x01(\tR\n" +
|
||||
"playerName\x12\x1b\n" +
|
||||
"\x06shopId\x18\x06 \x01(\x03H\x00R\x06shopId\x88\x01\x01\x12\x1f\n" +
|
||||
"\bshopName\x18\a \x01(\tH\x01R\bshopName\x88\x01\x01\x12(\n" +
|
||||
"consumerId\x12\x1a\n" +
|
||||
"\bplayerId\x18\x04 \x01(\x03R\bplayerId\x12\x1b\n" +
|
||||
"\x06shopId\x18\x06 \x01(\x03H\x00R\x06shopId\x88\x01\x01\x12(\n" +
|
||||
"\x0fserviceSnapshot\x18\b \x01(\tR\x0fserviceSnapshot\x12\x16\n" +
|
||||
"\x06status\x18\t \x01(\tR\x06status\x12\x1e\n" +
|
||||
"\n" +
|
||||
"totalPrice\x18\n" +
|
||||
" \x01(\tR\n" +
|
||||
"totalPrice\x12\x17\n" +
|
||||
"\x04note\x18\v \x01(\tH\x02R\x04note\x88\x01\x01\x12\x18\n" +
|
||||
"\x04note\x18\v \x01(\tH\x01R\x04note\x88\x01\x01\x12\x18\n" +
|
||||
"\aversion\x18\f \x01(\x03R\aversion\x12'\n" +
|
||||
"\ftimeoutJobId\x18\r \x01(\tH\x03R\ftimeoutJobId\x88\x01\x01\x12\x1e\n" +
|
||||
"\ftimeoutJobId\x18\r \x01(\tH\x02R\ftimeoutJobId\x88\x01\x01\x12\x1e\n" +
|
||||
"\n" +
|
||||
"searchText\x18\x0e \x01(\tR\n" +
|
||||
"searchText\x12\x1c\n" +
|
||||
"\tcreatedAt\x18\x0f \x01(\x03R\tcreatedAt\x12#\n" +
|
||||
"\n" +
|
||||
"acceptedAt\x18\x10 \x01(\x03H\x04R\n" +
|
||||
"acceptedAt\x18\x10 \x01(\x03H\x03R\n" +
|
||||
"acceptedAt\x88\x01\x01\x12\x1f\n" +
|
||||
"\bclosedAt\x18\x11 \x01(\x03H\x05R\bclosedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcompletedAt\x18\x12 \x01(\x03H\x06R\vcompletedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcancelledAt\x18\x13 \x01(\x03H\aR\vcancelledAt\x88\x01\x01\x12\x1c\n" +
|
||||
"\bclosedAt\x18\x11 \x01(\x03H\x04R\bclosedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcompletedAt\x18\x12 \x01(\x03H\x05R\vcompletedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcancelledAt\x18\x13 \x01(\x03H\x06R\vcancelledAt\x88\x01\x01\x12\x1c\n" +
|
||||
"\tupdatedAt\x18\x14 \x01(\x03R\tupdatedAtB\t\n" +
|
||||
"\a_shopIdB\v\n" +
|
||||
"\t_shopNameB\a\n" +
|
||||
"\a_shopIdB\a\n" +
|
||||
"\x05_noteB\x0f\n" +
|
||||
"\r_timeoutJobIdB\r\n" +
|
||||
"\v_acceptedAtB\v\n" +
|
||||
"\t_closedAtB\x0e\n" +
|
||||
"\f_completedAtB\x0e\n" +
|
||||
"\f_cancelledAt\"\xd3\x06\n" +
|
||||
"\f_cancelledAt\"\xe1\x05\n" +
|
||||
"\fAddOrdersReq\x12\x0e\n" +
|
||||
"\x02id\x18\x01 \x01(\x03R\x02id\x12\x1e\n" +
|
||||
"\n" +
|
||||
"consumerId\x18\x02 \x01(\x03R\n" +
|
||||
"consumerId\x12\"\n" +
|
||||
"\fconsumerName\x18\x03 \x01(\tR\fconsumerName\x12\x1a\n" +
|
||||
"\bplayerId\x18\x04 \x01(\x03R\bplayerId\x12\x1e\n" +
|
||||
"\n" +
|
||||
"playerName\x18\x05 \x01(\tR\n" +
|
||||
"playerName\x12\x1b\n" +
|
||||
"\x06shopId\x18\x06 \x01(\x03H\x00R\x06shopId\x88\x01\x01\x12\x1f\n" +
|
||||
"\bshopName\x18\a \x01(\tH\x01R\bshopName\x88\x01\x01\x12(\n" +
|
||||
"consumerId\x12\x1a\n" +
|
||||
"\bplayerId\x18\x04 \x01(\x03R\bplayerId\x12\x1b\n" +
|
||||
"\x06shopId\x18\x06 \x01(\x03H\x00R\x06shopId\x88\x01\x01\x12(\n" +
|
||||
"\x0fserviceSnapshot\x18\b \x01(\tR\x0fserviceSnapshot\x12\x1b\n" +
|
||||
"\x06status\x18\t \x01(\tH\x02R\x06status\x88\x01\x01\x12\x1e\n" +
|
||||
"\x06status\x18\t \x01(\tH\x01R\x06status\x88\x01\x01\x12\x1e\n" +
|
||||
"\n" +
|
||||
"totalPrice\x18\n" +
|
||||
" \x01(\tR\n" +
|
||||
"totalPrice\x12\x17\n" +
|
||||
"\x04note\x18\v \x01(\tH\x03R\x04note\x88\x01\x01\x12\x1d\n" +
|
||||
"\aversion\x18\f \x01(\x03H\x04R\aversion\x88\x01\x01\x12'\n" +
|
||||
"\ftimeoutJobId\x18\r \x01(\tH\x05R\ftimeoutJobId\x88\x01\x01\x12#\n" +
|
||||
"\x04note\x18\v \x01(\tH\x02R\x04note\x88\x01\x01\x12\x1d\n" +
|
||||
"\aversion\x18\f \x01(\x03H\x03R\aversion\x88\x01\x01\x12'\n" +
|
||||
"\ftimeoutJobId\x18\r \x01(\tH\x04R\ftimeoutJobId\x88\x01\x01\x12#\n" +
|
||||
"\n" +
|
||||
"searchText\x18\x0e \x01(\tH\x06R\n" +
|
||||
"searchText\x18\x0e \x01(\tH\x05R\n" +
|
||||
"searchText\x88\x01\x01\x12!\n" +
|
||||
"\tcreatedAt\x18\x0f \x01(\x03H\aR\tcreatedAt\x88\x01\x01\x12#\n" +
|
||||
"\tcreatedAt\x18\x0f \x01(\x03H\x06R\tcreatedAt\x88\x01\x01\x12#\n" +
|
||||
"\n" +
|
||||
"acceptedAt\x18\x10 \x01(\x03H\bR\n" +
|
||||
"acceptedAt\x18\x10 \x01(\x03H\aR\n" +
|
||||
"acceptedAt\x88\x01\x01\x12\x1f\n" +
|
||||
"\bclosedAt\x18\x11 \x01(\x03H\tR\bclosedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcompletedAt\x18\x12 \x01(\x03H\n" +
|
||||
"R\vcompletedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcancelledAt\x18\x13 \x01(\x03H\vR\vcancelledAt\x88\x01\x01\x12!\n" +
|
||||
"\tupdatedAt\x18\x14 \x01(\x03H\fR\tupdatedAt\x88\x01\x01B\t\n" +
|
||||
"\a_shopIdB\v\n" +
|
||||
"\t_shopNameB\t\n" +
|
||||
"\bclosedAt\x18\x11 \x01(\x03H\bR\bclosedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcompletedAt\x18\x12 \x01(\x03H\tR\vcompletedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcancelledAt\x18\x13 \x01(\x03H\n" +
|
||||
"R\vcancelledAt\x88\x01\x01\x12!\n" +
|
||||
"\tupdatedAt\x18\x14 \x01(\x03H\vR\tupdatedAt\x88\x01\x01B\t\n" +
|
||||
"\a_shopIdB\t\n" +
|
||||
"\a_statusB\a\n" +
|
||||
"\x05_noteB\n" +
|
||||
"\n" +
|
||||
@@ -1942,46 +1834,38 @@ const file_order_proto_rawDesc = "" +
|
||||
"\n" +
|
||||
"_updatedAt\"\x1f\n" +
|
||||
"\rAddOrdersResp\x12\x0e\n" +
|
||||
"\x02id\x18\x01 \x01(\x03R\x02id\"\xd3\a\n" +
|
||||
"\x02id\x18\x01 \x01(\x03R\x02id\"\xb7\x06\n" +
|
||||
"\x0fUpdateOrdersReq\x12\x0e\n" +
|
||||
"\x02id\x18\x01 \x01(\x03R\x02id\x12#\n" +
|
||||
"\n" +
|
||||
"consumerId\x18\x02 \x01(\x03H\x00R\n" +
|
||||
"consumerId\x88\x01\x01\x12'\n" +
|
||||
"\fconsumerName\x18\x03 \x01(\tH\x01R\fconsumerName\x88\x01\x01\x12\x1f\n" +
|
||||
"\bplayerId\x18\x04 \x01(\x03H\x02R\bplayerId\x88\x01\x01\x12#\n" +
|
||||
"\n" +
|
||||
"playerName\x18\x05 \x01(\tH\x03R\n" +
|
||||
"playerName\x88\x01\x01\x12\x1b\n" +
|
||||
"\x06shopId\x18\x06 \x01(\x03H\x04R\x06shopId\x88\x01\x01\x12\x1f\n" +
|
||||
"\bshopName\x18\a \x01(\tH\x05R\bshopName\x88\x01\x01\x12-\n" +
|
||||
"\x0fserviceSnapshot\x18\b \x01(\tH\x06R\x0fserviceSnapshot\x88\x01\x01\x12\x1b\n" +
|
||||
"\x06status\x18\t \x01(\tH\aR\x06status\x88\x01\x01\x12#\n" +
|
||||
"consumerId\x88\x01\x01\x12\x1f\n" +
|
||||
"\bplayerId\x18\x04 \x01(\x03H\x01R\bplayerId\x88\x01\x01\x12\x1b\n" +
|
||||
"\x06shopId\x18\x06 \x01(\x03H\x02R\x06shopId\x88\x01\x01\x12-\n" +
|
||||
"\x0fserviceSnapshot\x18\b \x01(\tH\x03R\x0fserviceSnapshot\x88\x01\x01\x12\x1b\n" +
|
||||
"\x06status\x18\t \x01(\tH\x04R\x06status\x88\x01\x01\x12#\n" +
|
||||
"\n" +
|
||||
"totalPrice\x18\n" +
|
||||
" \x01(\tH\bR\n" +
|
||||
" \x01(\tH\x05R\n" +
|
||||
"totalPrice\x88\x01\x01\x12\x17\n" +
|
||||
"\x04note\x18\v \x01(\tH\tR\x04note\x88\x01\x01\x12\x1d\n" +
|
||||
"\aversion\x18\f \x01(\x03H\n" +
|
||||
"R\aversion\x88\x01\x01\x12'\n" +
|
||||
"\ftimeoutJobId\x18\r \x01(\tH\vR\ftimeoutJobId\x88\x01\x01\x12#\n" +
|
||||
"\x04note\x18\v \x01(\tH\x06R\x04note\x88\x01\x01\x12\x1d\n" +
|
||||
"\aversion\x18\f \x01(\x03H\aR\aversion\x88\x01\x01\x12'\n" +
|
||||
"\ftimeoutJobId\x18\r \x01(\tH\bR\ftimeoutJobId\x88\x01\x01\x12#\n" +
|
||||
"\n" +
|
||||
"searchText\x18\x0e \x01(\tH\fR\n" +
|
||||
"searchText\x18\x0e \x01(\tH\tR\n" +
|
||||
"searchText\x88\x01\x01\x12!\n" +
|
||||
"\tcreatedAt\x18\x0f \x01(\x03H\rR\tcreatedAt\x88\x01\x01\x12#\n" +
|
||||
"\tcreatedAt\x18\x0f \x01(\x03H\n" +
|
||||
"R\tcreatedAt\x88\x01\x01\x12#\n" +
|
||||
"\n" +
|
||||
"acceptedAt\x18\x10 \x01(\x03H\x0eR\n" +
|
||||
"acceptedAt\x18\x10 \x01(\x03H\vR\n" +
|
||||
"acceptedAt\x88\x01\x01\x12\x1f\n" +
|
||||
"\bclosedAt\x18\x11 \x01(\x03H\x0fR\bclosedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcompletedAt\x18\x12 \x01(\x03H\x10R\vcompletedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcancelledAt\x18\x13 \x01(\x03H\x11R\vcancelledAt\x88\x01\x01\x12!\n" +
|
||||
"\tupdatedAt\x18\x14 \x01(\x03H\x12R\tupdatedAt\x88\x01\x01B\r\n" +
|
||||
"\v_consumerIdB\x0f\n" +
|
||||
"\r_consumerNameB\v\n" +
|
||||
"\t_playerIdB\r\n" +
|
||||
"\v_playerNameB\t\n" +
|
||||
"\a_shopIdB\v\n" +
|
||||
"\t_shopNameB\x12\n" +
|
||||
"\bclosedAt\x18\x11 \x01(\x03H\fR\bclosedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcompletedAt\x18\x12 \x01(\x03H\rR\vcompletedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcancelledAt\x18\x13 \x01(\x03H\x0eR\vcancelledAt\x88\x01\x01\x12!\n" +
|
||||
"\tupdatedAt\x18\x14 \x01(\x03H\x0fR\tupdatedAt\x88\x01\x01B\r\n" +
|
||||
"\v_consumerIdB\v\n" +
|
||||
"\t_playerIdB\t\n" +
|
||||
"\a_shopIdB\x12\n" +
|
||||
"\x10_serviceSnapshotB\t\n" +
|
||||
"\a_statusB\r\n" +
|
||||
"\v_totalPriceB\a\n" +
|
||||
@@ -2006,49 +1890,41 @@ const file_order_proto_rawDesc = "" +
|
||||
"\x02id\x18\x01 \x01(\x03R\x02id\"7\n" +
|
||||
"\x11GetOrdersByIdResp\x12\"\n" +
|
||||
"\x06orders\x18\x01 \x01(\v2\n" +
|
||||
".pb.OrdersR\x06orders\"\x89\b\n" +
|
||||
".pb.OrdersR\x06orders\"\xed\x06\n" +
|
||||
"\x0fSearchOrdersReq\x12\x12\n" +
|
||||
"\x04page\x18\x01 \x01(\x03R\x04page\x12\x14\n" +
|
||||
"\x05limit\x18\x02 \x01(\x03R\x05limit\x12\x13\n" +
|
||||
"\x02id\x18\x03 \x01(\x03H\x00R\x02id\x88\x01\x01\x12#\n" +
|
||||
"\n" +
|
||||
"consumerId\x18\x04 \x01(\x03H\x01R\n" +
|
||||
"consumerId\x88\x01\x01\x12'\n" +
|
||||
"\fconsumerName\x18\x05 \x01(\tH\x02R\fconsumerName\x88\x01\x01\x12\x1f\n" +
|
||||
"\bplayerId\x18\x06 \x01(\x03H\x03R\bplayerId\x88\x01\x01\x12#\n" +
|
||||
"\n" +
|
||||
"playerName\x18\a \x01(\tH\x04R\n" +
|
||||
"playerName\x88\x01\x01\x12\x1b\n" +
|
||||
"\x06shopId\x18\b \x01(\x03H\x05R\x06shopId\x88\x01\x01\x12\x1f\n" +
|
||||
"\bshopName\x18\t \x01(\tH\x06R\bshopName\x88\x01\x01\x12-\n" +
|
||||
"consumerId\x88\x01\x01\x12\x1f\n" +
|
||||
"\bplayerId\x18\x06 \x01(\x03H\x02R\bplayerId\x88\x01\x01\x12\x1b\n" +
|
||||
"\x06shopId\x18\b \x01(\x03H\x03R\x06shopId\x88\x01\x01\x12-\n" +
|
||||
"\x0fserviceSnapshot\x18\n" +
|
||||
" \x01(\tH\aR\x0fserviceSnapshot\x88\x01\x01\x12\x1b\n" +
|
||||
"\x06status\x18\v \x01(\tH\bR\x06status\x88\x01\x01\x12#\n" +
|
||||
" \x01(\tH\x04R\x0fserviceSnapshot\x88\x01\x01\x12\x1b\n" +
|
||||
"\x06status\x18\v \x01(\tH\x05R\x06status\x88\x01\x01\x12#\n" +
|
||||
"\n" +
|
||||
"totalPrice\x18\f \x01(\tH\tR\n" +
|
||||
"totalPrice\x18\f \x01(\tH\x06R\n" +
|
||||
"totalPrice\x88\x01\x01\x12\x17\n" +
|
||||
"\x04note\x18\r \x01(\tH\n" +
|
||||
"R\x04note\x88\x01\x01\x12\x1d\n" +
|
||||
"\aversion\x18\x0e \x01(\x03H\vR\aversion\x88\x01\x01\x12'\n" +
|
||||
"\ftimeoutJobId\x18\x0f \x01(\tH\fR\ftimeoutJobId\x88\x01\x01\x12#\n" +
|
||||
"\x04note\x18\r \x01(\tH\aR\x04note\x88\x01\x01\x12\x1d\n" +
|
||||
"\aversion\x18\x0e \x01(\x03H\bR\aversion\x88\x01\x01\x12'\n" +
|
||||
"\ftimeoutJobId\x18\x0f \x01(\tH\tR\ftimeoutJobId\x88\x01\x01\x12#\n" +
|
||||
"\n" +
|
||||
"searchText\x18\x10 \x01(\tH\rR\n" +
|
||||
"searchText\x18\x10 \x01(\tH\n" +
|
||||
"R\n" +
|
||||
"searchText\x88\x01\x01\x12!\n" +
|
||||
"\tcreatedAt\x18\x11 \x01(\x03H\x0eR\tcreatedAt\x88\x01\x01\x12#\n" +
|
||||
"\tcreatedAt\x18\x11 \x01(\x03H\vR\tcreatedAt\x88\x01\x01\x12#\n" +
|
||||
"\n" +
|
||||
"acceptedAt\x18\x12 \x01(\x03H\x0fR\n" +
|
||||
"acceptedAt\x18\x12 \x01(\x03H\fR\n" +
|
||||
"acceptedAt\x88\x01\x01\x12\x1f\n" +
|
||||
"\bclosedAt\x18\x13 \x01(\x03H\x10R\bclosedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcompletedAt\x18\x14 \x01(\x03H\x11R\vcompletedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcancelledAt\x18\x15 \x01(\x03H\x12R\vcancelledAt\x88\x01\x01\x12!\n" +
|
||||
"\tupdatedAt\x18\x16 \x01(\x03H\x13R\tupdatedAt\x88\x01\x01B\x05\n" +
|
||||
"\bclosedAt\x18\x13 \x01(\x03H\rR\bclosedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcompletedAt\x18\x14 \x01(\x03H\x0eR\vcompletedAt\x88\x01\x01\x12%\n" +
|
||||
"\vcancelledAt\x18\x15 \x01(\x03H\x0fR\vcancelledAt\x88\x01\x01\x12!\n" +
|
||||
"\tupdatedAt\x18\x16 \x01(\x03H\x10R\tupdatedAt\x88\x01\x01B\x05\n" +
|
||||
"\x03_idB\r\n" +
|
||||
"\v_consumerIdB\x0f\n" +
|
||||
"\r_consumerNameB\v\n" +
|
||||
"\t_playerIdB\r\n" +
|
||||
"\v_playerNameB\t\n" +
|
||||
"\a_shopIdB\v\n" +
|
||||
"\t_shopNameB\x12\n" +
|
||||
"\v_consumerIdB\v\n" +
|
||||
"\t_playerIdB\t\n" +
|
||||
"\a_shopIdB\x12\n" +
|
||||
"\x10_serviceSnapshotB\t\n" +
|
||||
"\a_statusB\r\n" +
|
||||
"\v_totalPriceB\a\n" +
|
||||
|
||||
Reference in New Issue
Block a user