Przeglądaj źródła

feat: 套餐表和渠道套餐表新增字段[标签类型]

BaiLuoYan 1 miesiąc temu
rodzic
commit
24fda63018
3 zmienionych plików z 13 dodań i 2 usunięć
  1. 1 0
      pb/gorpc.proto
  2. 11 2
      pb/pb/gorpc.pb.go
  3. 1 0
      pb/plan.proto

+ 1 - 0
pb/gorpc.proto

@@ -601,6 +601,7 @@ message ServicePlanChannelVo {
   int64 createAt = 20;             // 创建者ID
   int64 updateTime = 21;           // 更新时间
   int64 updateAt = 22;             // 更新者ID
+  int64 tagType = 23;              // 标签类型(与客户端约定)
 }
 
 message ServicePlanChannelGetReq { ServicePlanChannelVo vo = 1; }

+ 11 - 2
pb/pb/gorpc.pb.go

@@ -6304,6 +6304,7 @@ type ServicePlanChannelVo struct {
 	CreateAt            int64                  `protobuf:"varint,20,opt,name=createAt,proto3" json:"createAt,omitempty"`                      // 创建者ID
 	UpdateTime          int64                  `protobuf:"varint,21,opt,name=updateTime,proto3" json:"updateTime,omitempty"`                  // 更新时间
 	UpdateAt            int64                  `protobuf:"varint,22,opt,name=updateAt,proto3" json:"updateAt,omitempty"`                      // 更新者ID
+	TagType             int64                  `protobuf:"varint,23,opt,name=tagType,proto3" json:"tagType,omitempty"`                        // 标签类型(与客户端约定)
 	unknownFields       protoimpl.UnknownFields
 	sizeCache           protoimpl.SizeCache
 }
@@ -6492,6 +6493,13 @@ func (x *ServicePlanChannelVo) GetUpdateAt() int64 {
 	return 0
 }
 
+func (x *ServicePlanChannelVo) GetTagType() int64 {
+	if x != nil {
+		return x.TagType
+	}
+	return 0
+}
+
 type ServicePlanChannelGetReq struct {
 	state         protoimpl.MessageState `protogen:"open.v1"`
 	Vo            *ServicePlanChannelVo  `protobuf:"bytes,1,opt,name=vo,proto3" json:"vo,omitempty"`
@@ -31441,7 +31449,7 @@ const file_gorpc_proto_rawDesc = "" +
 	"planStatus\"_\n" +
 	"\x18ServicePlanBoxesListResp\x12\x14\n" +
 	"\x05total\x18\x01 \x01(\x03R\x05total\x12-\n" +
-	"\x04list\x18\x02 \x03(\v2\x19.gorpc.ServicePlanBoxesVoR\x04list\"\xb7\x05\n" +
+	"\x04list\x18\x02 \x03(\v2\x19.gorpc.ServicePlanBoxesVoR\x04list\"\xd1\x05\n" +
 	"\x14ServicePlanChannelVo\x12\x0e\n" +
 	"\x02id\x18\x01 \x01(\x03R\x02id\x12 \n" +
 	"\vproductCode\x18\x02 \x01(\tR\vproductCode\x12\x18\n" +
@@ -31469,7 +31477,8 @@ const file_gorpc_proto_rawDesc = "" +
 	"\n" +
 	"updateTime\x18\x15 \x01(\x03R\n" +
 	"updateTime\x12\x1a\n" +
-	"\bupdateAt\x18\x16 \x01(\x03R\bupdateAt\"G\n" +
+	"\bupdateAt\x18\x16 \x01(\x03R\bupdateAt\x12\x18\n" +
+	"\atagType\x18\x17 \x01(\x03R\atagType\"G\n" +
 	"\x18ServicePlanChannelGetReq\x12+\n" +
 	"\x02vo\x18\x01 \x01(\v2\x1b.gorpc.ServicePlanChannelVoR\x02vo\"H\n" +
 	"\x19ServicePlanChannelGetResp\x12+\n" +

+ 1 - 0
pb/plan.proto

@@ -327,6 +327,7 @@ message ServicePlanChannelVo {
   int64 createAt = 20;             // 创建者ID
   int64 updateTime = 21;           // 更新时间
   int64 updateAt = 22;             // 更新者ID
+  int64 tagType = 23;              // 标签类型(与客户端约定)
 }
 
 message ServicePlanChannelGetReq { ServicePlanChannelVo vo = 1; }