|
@@ -441,6 +441,155 @@ func (m *TreeNode) GetNodes() []*TreeNode {
|
|
|
return nil
|
|
return nil
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+type ErpMktNetWorkDetail struct {
|
|
|
|
|
+ Nodes []*TreeNode `protobuf:"bytes,5,rep,name=nodes,proto3" json:"nodes,omitempty"`
|
|
|
|
|
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
|
+ Text string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
|
|
|
|
|
+ Parent int64 `protobuf:"varint,3,opt,name=parent,proto3" json:"parent,omitempty"`
|
|
|
|
|
+ Inheritance string `protobuf:"bytes,4,opt,name=inheritance,proto3" json:"inheritance,omitempty"`
|
|
|
|
|
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
|
+ XXX_unrecognized []byte `json:"-"`
|
|
|
|
|
+ XXX_sizecache int32 `json:"-"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) Reset() { *m = ErpMktNetWorkDetail{} }
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*ErpMktNetWorkDetail) ProtoMessage() {}
|
|
|
|
|
+func (*ErpMktNetWorkDetail) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{7}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return xxx_messageInfo_ErpMktNetWorkDetail.Unmarshal(m, b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ return xxx_messageInfo_ErpMktNetWorkDetail.Marshal(b, m, deterministic)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_ErpMktNetWorkDetail.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) XXX_Size() int {
|
|
|
|
|
+ return xxx_messageInfo_ErpMktNetWorkDetail.Size(m)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_ErpMktNetWorkDetail.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_ErpMktNetWorkDetail proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) GetNodes() []*TreeNode {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Nodes
|
|
|
|
|
+ }
|
|
|
|
|
+ return nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) GetId() int64 {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Id
|
|
|
|
|
+ }
|
|
|
|
|
+ return 0
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) GetText() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Text
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) GetParent() int64 {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Parent
|
|
|
|
|
+ }
|
|
|
|
|
+ return 0
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetail) GetInheritance() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Inheritance
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+type ErpMktNetWorkDetailRes struct {
|
|
|
|
|
+ Items []*ErpMktNetWorkDetail `protobuf:"bytes,5,rep,name=items,proto3" json:"items,omitempty"`
|
|
|
|
|
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
|
+ XXX_unrecognized []byte `json:"-"`
|
|
|
|
|
+ XXX_sizecache int32 `json:"-"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetailRes) Reset() { *m = ErpMktNetWorkDetailRes{} }
|
|
|
|
|
+func (m *ErpMktNetWorkDetailRes) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*ErpMktNetWorkDetailRes) ProtoMessage() {}
|
|
|
|
|
+func (*ErpMktNetWorkDetailRes) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{8}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetailRes) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return xxx_messageInfo_ErpMktNetWorkDetailRes.Unmarshal(m, b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetailRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ return xxx_messageInfo_ErpMktNetWorkDetailRes.Marshal(b, m, deterministic)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetailRes) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_ErpMktNetWorkDetailRes.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetailRes) XXX_Size() int {
|
|
|
|
|
+ return xxx_messageInfo_ErpMktNetWorkDetailRes.Size(m)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetailRes) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_ErpMktNetWorkDetailRes.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_ErpMktNetWorkDetailRes proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetailRes) GetItems() []*ErpMktNetWorkDetail {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Items
|
|
|
|
|
+ }
|
|
|
|
|
+ return nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+type ErpMktNetWorkDetailReq struct {
|
|
|
|
|
+ Ids string `protobuf:"bytes,1,opt,name=ids,proto3" json:"ids,omitempty"`
|
|
|
|
|
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
|
+ XXX_unrecognized []byte `json:"-"`
|
|
|
|
|
+ XXX_sizecache int32 `json:"-"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetailReq) Reset() { *m = ErpMktNetWorkDetailReq{} }
|
|
|
|
|
+func (m *ErpMktNetWorkDetailReq) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*ErpMktNetWorkDetailReq) ProtoMessage() {}
|
|
|
|
|
+func (*ErpMktNetWorkDetailReq) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{9}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetailReq) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return xxx_messageInfo_ErpMktNetWorkDetailReq.Unmarshal(m, b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetailReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ return xxx_messageInfo_ErpMktNetWorkDetailReq.Marshal(b, m, deterministic)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetailReq) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_ErpMktNetWorkDetailReq.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetailReq) XXX_Size() int {
|
|
|
|
|
+ return xxx_messageInfo_ErpMktNetWorkDetailReq.Size(m)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *ErpMktNetWorkDetailReq) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_ErpMktNetWorkDetailReq.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_ErpMktNetWorkDetailReq proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+func (m *ErpMktNetWorkDetailReq) GetIds() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Ids
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
type Tag struct {
|
|
type Tag struct {
|
|
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
@@ -453,7 +602,7 @@ func (m *Tag) Reset() { *m = Tag{} }
|
|
|
func (m *Tag) String() string { return proto.CompactTextString(m) }
|
|
func (m *Tag) String() string { return proto.CompactTextString(m) }
|
|
|
func (*Tag) ProtoMessage() {}
|
|
func (*Tag) ProtoMessage() {}
|
|
|
func (*Tag) Descriptor() ([]byte, []int) {
|
|
func (*Tag) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{7}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{10}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *Tag) XXX_Unmarshal(b []byte) error {
|
|
func (m *Tag) XXX_Unmarshal(b []byte) error {
|
|
@@ -499,7 +648,7 @@ func (m *OptionsetReq) Reset() { *m = OptionsetReq{} }
|
|
|
func (m *OptionsetReq) String() string { return proto.CompactTextString(m) }
|
|
func (m *OptionsetReq) String() string { return proto.CompactTextString(m) }
|
|
|
func (*OptionsetReq) ProtoMessage() {}
|
|
func (*OptionsetReq) ProtoMessage() {}
|
|
|
func (*OptionsetReq) Descriptor() ([]byte, []int) {
|
|
func (*OptionsetReq) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{8}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{11}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *OptionsetReq) XXX_Unmarshal(b []byte) error {
|
|
func (m *OptionsetReq) XXX_Unmarshal(b []byte) error {
|
|
@@ -538,7 +687,7 @@ func (m *OptionsetRes) Reset() { *m = OptionsetRes{} }
|
|
|
func (m *OptionsetRes) String() string { return proto.CompactTextString(m) }
|
|
func (m *OptionsetRes) String() string { return proto.CompactTextString(m) }
|
|
|
func (*OptionsetRes) ProtoMessage() {}
|
|
func (*OptionsetRes) ProtoMessage() {}
|
|
|
func (*OptionsetRes) Descriptor() ([]byte, []int) {
|
|
func (*OptionsetRes) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{9}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{12}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *OptionsetRes) XXX_Unmarshal(b []byte) error {
|
|
func (m *OptionsetRes) XXX_Unmarshal(b []byte) error {
|
|
@@ -577,7 +726,7 @@ func (m *OptionCode) Reset() { *m = OptionCode{} }
|
|
|
func (m *OptionCode) String() string { return proto.CompactTextString(m) }
|
|
func (m *OptionCode) String() string { return proto.CompactTextString(m) }
|
|
|
func (*OptionCode) ProtoMessage() {}
|
|
func (*OptionCode) ProtoMessage() {}
|
|
|
func (*OptionCode) Descriptor() ([]byte, []int) {
|
|
func (*OptionCode) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{10}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{13}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *OptionCode) XXX_Unmarshal(b []byte) error {
|
|
func (m *OptionCode) XXX_Unmarshal(b []byte) error {
|
|
@@ -618,7 +767,7 @@ func (m *Options) Reset() { *m = Options{} }
|
|
|
func (m *Options) String() string { return proto.CompactTextString(m) }
|
|
func (m *Options) String() string { return proto.CompactTextString(m) }
|
|
|
func (*Options) ProtoMessage() {}
|
|
func (*Options) ProtoMessage() {}
|
|
|
func (*Options) Descriptor() ([]byte, []int) {
|
|
func (*Options) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{11}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{14}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *Options) XXX_Unmarshal(b []byte) error {
|
|
func (m *Options) XXX_Unmarshal(b []byte) error {
|
|
@@ -671,7 +820,7 @@ func (m *ResponseByte) Reset() { *m = ResponseByte{} }
|
|
|
func (m *ResponseByte) String() string { return proto.CompactTextString(m) }
|
|
func (m *ResponseByte) String() string { return proto.CompactTextString(m) }
|
|
|
func (*ResponseByte) ProtoMessage() {}
|
|
func (*ResponseByte) ProtoMessage() {}
|
|
|
func (*ResponseByte) Descriptor() ([]byte, []int) {
|
|
func (*ResponseByte) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{12}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{15}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *ResponseByte) XXX_Unmarshal(b []byte) error {
|
|
func (m *ResponseByte) XXX_Unmarshal(b []byte) error {
|
|
@@ -716,7 +865,7 @@ func (m *ExcelLogReq) Reset() { *m = ExcelLogReq{} }
|
|
|
func (m *ExcelLogReq) String() string { return proto.CompactTextString(m) }
|
|
func (m *ExcelLogReq) String() string { return proto.CompactTextString(m) }
|
|
|
func (*ExcelLogReq) ProtoMessage() {}
|
|
func (*ExcelLogReq) ProtoMessage() {}
|
|
|
func (*ExcelLogReq) Descriptor() ([]byte, []int) {
|
|
func (*ExcelLogReq) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{13}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{16}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *ExcelLogReq) XXX_Unmarshal(b []byte) error {
|
|
func (m *ExcelLogReq) XXX_Unmarshal(b []byte) error {
|
|
@@ -797,7 +946,7 @@ func (m *ExcelLogRes) Reset() { *m = ExcelLogRes{} }
|
|
|
func (m *ExcelLogRes) String() string { return proto.CompactTextString(m) }
|
|
func (m *ExcelLogRes) String() string { return proto.CompactTextString(m) }
|
|
|
func (*ExcelLogRes) ProtoMessage() {}
|
|
func (*ExcelLogRes) ProtoMessage() {}
|
|
|
func (*ExcelLogRes) Descriptor() ([]byte, []int) {
|
|
func (*ExcelLogRes) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{14}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{17}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *ExcelLogRes) XXX_Unmarshal(b []byte) error {
|
|
func (m *ExcelLogRes) XXX_Unmarshal(b []byte) error {
|
|
@@ -836,7 +985,7 @@ func (m *SchoolIdsReq) Reset() { *m = SchoolIdsReq{} }
|
|
|
func (m *SchoolIdsReq) String() string { return proto.CompactTextString(m) }
|
|
func (m *SchoolIdsReq) String() string { return proto.CompactTextString(m) }
|
|
|
func (*SchoolIdsReq) ProtoMessage() {}
|
|
func (*SchoolIdsReq) ProtoMessage() {}
|
|
|
func (*SchoolIdsReq) Descriptor() ([]byte, []int) {
|
|
func (*SchoolIdsReq) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{15}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{18}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *SchoolIdsReq) XXX_Unmarshal(b []byte) error {
|
|
func (m *SchoolIdsReq) XXX_Unmarshal(b []byte) error {
|
|
@@ -875,7 +1024,7 @@ func (m *ListOfInt) Reset() { *m = ListOfInt{} }
|
|
|
func (m *ListOfInt) String() string { return proto.CompactTextString(m) }
|
|
func (m *ListOfInt) String() string { return proto.CompactTextString(m) }
|
|
|
func (*ListOfInt) ProtoMessage() {}
|
|
func (*ListOfInt) ProtoMessage() {}
|
|
|
func (*ListOfInt) Descriptor() ([]byte, []int) {
|
|
func (*ListOfInt) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{16}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{19}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *ListOfInt) XXX_Unmarshal(b []byte) error {
|
|
func (m *ListOfInt) XXX_Unmarshal(b []byte) error {
|
|
@@ -914,7 +1063,7 @@ func (m *SchoolIdsRes) Reset() { *m = SchoolIdsRes{} }
|
|
|
func (m *SchoolIdsRes) String() string { return proto.CompactTextString(m) }
|
|
func (m *SchoolIdsRes) String() string { return proto.CompactTextString(m) }
|
|
|
func (*SchoolIdsRes) ProtoMessage() {}
|
|
func (*SchoolIdsRes) ProtoMessage() {}
|
|
|
func (*SchoolIdsRes) Descriptor() ([]byte, []int) {
|
|
func (*SchoolIdsRes) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{17}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{20}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *SchoolIdsRes) XXX_Unmarshal(b []byte) error {
|
|
func (m *SchoolIdsRes) XXX_Unmarshal(b []byte) error {
|
|
@@ -953,7 +1102,7 @@ func (m *CityIdsReq) Reset() { *m = CityIdsReq{} }
|
|
|
func (m *CityIdsReq) String() string { return proto.CompactTextString(m) }
|
|
func (m *CityIdsReq) String() string { return proto.CompactTextString(m) }
|
|
|
func (*CityIdsReq) ProtoMessage() {}
|
|
func (*CityIdsReq) ProtoMessage() {}
|
|
|
func (*CityIdsReq) Descriptor() ([]byte, []int) {
|
|
func (*CityIdsReq) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{18}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{21}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *CityIdsReq) XXX_Unmarshal(b []byte) error {
|
|
func (m *CityIdsReq) XXX_Unmarshal(b []byte) error {
|
|
@@ -992,7 +1141,7 @@ func (m *CityIdsRes) Reset() { *m = CityIdsRes{} }
|
|
|
func (m *CityIdsRes) String() string { return proto.CompactTextString(m) }
|
|
func (m *CityIdsRes) String() string { return proto.CompactTextString(m) }
|
|
|
func (*CityIdsRes) ProtoMessage() {}
|
|
func (*CityIdsRes) ProtoMessage() {}
|
|
|
func (*CityIdsRes) Descriptor() ([]byte, []int) {
|
|
func (*CityIdsRes) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{19}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{22}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *CityIdsRes) XXX_Unmarshal(b []byte) error {
|
|
func (m *CityIdsRes) XXX_Unmarshal(b []byte) error {
|
|
@@ -1031,7 +1180,7 @@ func (m *BytesReq) Reset() { *m = BytesReq{} }
|
|
|
func (m *BytesReq) String() string { return proto.CompactTextString(m) }
|
|
func (m *BytesReq) String() string { return proto.CompactTextString(m) }
|
|
|
func (*BytesReq) ProtoMessage() {}
|
|
func (*BytesReq) ProtoMessage() {}
|
|
|
func (*BytesReq) Descriptor() ([]byte, []int) {
|
|
func (*BytesReq) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{20}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{23}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *BytesReq) XXX_Unmarshal(b []byte) error {
|
|
func (m *BytesReq) XXX_Unmarshal(b []byte) error {
|
|
@@ -1070,7 +1219,7 @@ func (m *BytesResp) Reset() { *m = BytesResp{} }
|
|
|
func (m *BytesResp) String() string { return proto.CompactTextString(m) }
|
|
func (m *BytesResp) String() string { return proto.CompactTextString(m) }
|
|
|
func (*BytesResp) ProtoMessage() {}
|
|
func (*BytesResp) ProtoMessage() {}
|
|
|
func (*BytesResp) Descriptor() ([]byte, []int) {
|
|
func (*BytesResp) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{21}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{24}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *BytesResp) XXX_Unmarshal(b []byte) error {
|
|
func (m *BytesResp) XXX_Unmarshal(b []byte) error {
|
|
@@ -1111,7 +1260,7 @@ func (m *GetErpRoleRes) Reset() { *m = GetErpRoleRes{} }
|
|
|
func (m *GetErpRoleRes) String() string { return proto.CompactTextString(m) }
|
|
func (m *GetErpRoleRes) String() string { return proto.CompactTextString(m) }
|
|
|
func (*GetErpRoleRes) ProtoMessage() {}
|
|
func (*GetErpRoleRes) ProtoMessage() {}
|
|
|
func (*GetErpRoleRes) Descriptor() ([]byte, []int) {
|
|
func (*GetErpRoleRes) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{22}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{25}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *GetErpRoleRes) XXX_Unmarshal(b []byte) error {
|
|
func (m *GetErpRoleRes) XXX_Unmarshal(b []byte) error {
|
|
@@ -1165,7 +1314,7 @@ func (m *GetErpRoleReq) Reset() { *m = GetErpRoleReq{} }
|
|
|
func (m *GetErpRoleReq) String() string { return proto.CompactTextString(m) }
|
|
func (m *GetErpRoleReq) String() string { return proto.CompactTextString(m) }
|
|
|
func (*GetErpRoleReq) ProtoMessage() {}
|
|
func (*GetErpRoleReq) ProtoMessage() {}
|
|
|
func (*GetErpRoleReq) Descriptor() ([]byte, []int) {
|
|
func (*GetErpRoleReq) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{23}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{26}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *GetErpRoleReq) XXX_Unmarshal(b []byte) error {
|
|
func (m *GetErpRoleReq) XXX_Unmarshal(b []byte) error {
|
|
@@ -1211,7 +1360,7 @@ func (m *GetErpOrganSchPerByUserIdReq) Reset() { *m = GetErpOrganSchPerB
|
|
|
func (m *GetErpOrganSchPerByUserIdReq) String() string { return proto.CompactTextString(m) }
|
|
func (m *GetErpOrganSchPerByUserIdReq) String() string { return proto.CompactTextString(m) }
|
|
|
func (*GetErpOrganSchPerByUserIdReq) ProtoMessage() {}
|
|
func (*GetErpOrganSchPerByUserIdReq) ProtoMessage() {}
|
|
|
func (*GetErpOrganSchPerByUserIdReq) Descriptor() ([]byte, []int) {
|
|
func (*GetErpOrganSchPerByUserIdReq) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{24}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{27}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *GetErpOrganSchPerByUserIdReq) XXX_Unmarshal(b []byte) error {
|
|
func (m *GetErpOrganSchPerByUserIdReq) XXX_Unmarshal(b []byte) error {
|
|
@@ -1250,7 +1399,7 @@ func (m *GetErpOrganSchPerByUserIdRes) Reset() { *m = GetErpOrganSchPerB
|
|
|
func (m *GetErpOrganSchPerByUserIdRes) String() string { return proto.CompactTextString(m) }
|
|
func (m *GetErpOrganSchPerByUserIdRes) String() string { return proto.CompactTextString(m) }
|
|
|
func (*GetErpOrganSchPerByUserIdRes) ProtoMessage() {}
|
|
func (*GetErpOrganSchPerByUserIdRes) ProtoMessage() {}
|
|
|
func (*GetErpOrganSchPerByUserIdRes) Descriptor() ([]byte, []int) {
|
|
func (*GetErpOrganSchPerByUserIdRes) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{25}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{28}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *GetErpOrganSchPerByUserIdRes) XXX_Unmarshal(b []byte) error {
|
|
func (m *GetErpOrganSchPerByUserIdRes) XXX_Unmarshal(b []byte) error {
|
|
@@ -1291,7 +1440,7 @@ func (m *OrganSchool) Reset() { *m = OrganSchool{} }
|
|
|
func (m *OrganSchool) String() string { return proto.CompactTextString(m) }
|
|
func (m *OrganSchool) String() string { return proto.CompactTextString(m) }
|
|
|
func (*OrganSchool) ProtoMessage() {}
|
|
func (*OrganSchool) ProtoMessage() {}
|
|
|
func (*OrganSchool) Descriptor() ([]byte, []int) {
|
|
func (*OrganSchool) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{26}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{29}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *OrganSchool) XXX_Unmarshal(b []byte) error {
|
|
func (m *OrganSchool) XXX_Unmarshal(b []byte) error {
|
|
@@ -1344,7 +1493,7 @@ func (m *GetErpSchoolRes) Reset() { *m = GetErpSchoolRes{} }
|
|
|
func (m *GetErpSchoolRes) String() string { return proto.CompactTextString(m) }
|
|
func (m *GetErpSchoolRes) String() string { return proto.CompactTextString(m) }
|
|
|
func (*GetErpSchoolRes) ProtoMessage() {}
|
|
func (*GetErpSchoolRes) ProtoMessage() {}
|
|
|
func (*GetErpSchoolRes) Descriptor() ([]byte, []int) {
|
|
func (*GetErpSchoolRes) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{27}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{30}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *GetErpSchoolRes) XXX_Unmarshal(b []byte) error {
|
|
func (m *GetErpSchoolRes) XXX_Unmarshal(b []byte) error {
|
|
@@ -1383,7 +1532,7 @@ func (m *GetErpActiveReq) Reset() { *m = GetErpActiveReq{} }
|
|
|
func (m *GetErpActiveReq) String() string { return proto.CompactTextString(m) }
|
|
func (m *GetErpActiveReq) String() string { return proto.CompactTextString(m) }
|
|
|
func (*GetErpActiveReq) ProtoMessage() {}
|
|
func (*GetErpActiveReq) ProtoMessage() {}
|
|
|
func (*GetErpActiveReq) Descriptor() ([]byte, []int) {
|
|
func (*GetErpActiveReq) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{28}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{31}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *GetErpActiveReq) XXX_Unmarshal(b []byte) error {
|
|
func (m *GetErpActiveReq) XXX_Unmarshal(b []byte) error {
|
|
@@ -1422,7 +1571,7 @@ func (m *GetErpActiveRes) Reset() { *m = GetErpActiveRes{} }
|
|
|
func (m *GetErpActiveRes) String() string { return proto.CompactTextString(m) }
|
|
func (m *GetErpActiveRes) String() string { return proto.CompactTextString(m) }
|
|
|
func (*GetErpActiveRes) ProtoMessage() {}
|
|
func (*GetErpActiveRes) ProtoMessage() {}
|
|
|
func (*GetErpActiveRes) Descriptor() ([]byte, []int) {
|
|
func (*GetErpActiveRes) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{29}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{32}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *GetErpActiveRes) XXX_Unmarshal(b []byte) error {
|
|
func (m *GetErpActiveRes) XXX_Unmarshal(b []byte) error {
|
|
@@ -1462,7 +1611,7 @@ func (m *Active) Reset() { *m = Active{} }
|
|
|
func (m *Active) String() string { return proto.CompactTextString(m) }
|
|
func (m *Active) String() string { return proto.CompactTextString(m) }
|
|
|
func (*Active) ProtoMessage() {}
|
|
func (*Active) ProtoMessage() {}
|
|
|
func (*Active) Descriptor() ([]byte, []int) {
|
|
func (*Active) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{30}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{33}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *Active) XXX_Unmarshal(b []byte) error {
|
|
func (m *Active) XXX_Unmarshal(b []byte) error {
|
|
@@ -1509,7 +1658,7 @@ func (m *DataPermissionReq) Reset() { *m = DataPermissionReq{} }
|
|
|
func (m *DataPermissionReq) String() string { return proto.CompactTextString(m) }
|
|
func (m *DataPermissionReq) String() string { return proto.CompactTextString(m) }
|
|
|
func (*DataPermissionReq) ProtoMessage() {}
|
|
func (*DataPermissionReq) ProtoMessage() {}
|
|
|
func (*DataPermissionReq) Descriptor() ([]byte, []int) {
|
|
func (*DataPermissionReq) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{31}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{34}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *DataPermissionReq) XXX_Unmarshal(b []byte) error {
|
|
func (m *DataPermissionReq) XXX_Unmarshal(b []byte) error {
|
|
@@ -1555,7 +1704,7 @@ func (m *DataPermissionRes) Reset() { *m = DataPermissionRes{} }
|
|
|
func (m *DataPermissionRes) String() string { return proto.CompactTextString(m) }
|
|
func (m *DataPermissionRes) String() string { return proto.CompactTextString(m) }
|
|
|
func (*DataPermissionRes) ProtoMessage() {}
|
|
func (*DataPermissionRes) ProtoMessage() {}
|
|
|
func (*DataPermissionRes) Descriptor() ([]byte, []int) {
|
|
func (*DataPermissionRes) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{32}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{35}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *DataPermissionRes) XXX_Unmarshal(b []byte) error {
|
|
func (m *DataPermissionRes) XXX_Unmarshal(b []byte) error {
|
|
@@ -1615,7 +1764,7 @@ func (m *MktReq) Reset() { *m = MktReq{} }
|
|
|
func (m *MktReq) String() string { return proto.CompactTextString(m) }
|
|
func (m *MktReq) String() string { return proto.CompactTextString(m) }
|
|
|
func (*MktReq) ProtoMessage() {}
|
|
func (*MktReq) ProtoMessage() {}
|
|
|
func (*MktReq) Descriptor() ([]byte, []int) {
|
|
func (*MktReq) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{33}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{36}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *MktReq) XXX_Unmarshal(b []byte) error {
|
|
func (m *MktReq) XXX_Unmarshal(b []byte) error {
|
|
@@ -1801,7 +1950,7 @@ func (m *MktRes) Reset() { *m = MktRes{} }
|
|
|
func (m *MktRes) String() string { return proto.CompactTextString(m) }
|
|
func (m *MktRes) String() string { return proto.CompactTextString(m) }
|
|
|
func (*MktRes) ProtoMessage() {}
|
|
func (*MktRes) ProtoMessage() {}
|
|
|
func (*MktRes) Descriptor() ([]byte, []int) {
|
|
func (*MktRes) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{34}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{37}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *MktRes) XXX_Unmarshal(b []byte) error {
|
|
func (m *MktRes) XXX_Unmarshal(b []byte) error {
|
|
@@ -1840,7 +1989,7 @@ func (m *StudentReq) Reset() { *m = StudentReq{} }
|
|
|
func (m *StudentReq) String() string { return proto.CompactTextString(m) }
|
|
func (m *StudentReq) String() string { return proto.CompactTextString(m) }
|
|
|
func (*StudentReq) ProtoMessage() {}
|
|
func (*StudentReq) ProtoMessage() {}
|
|
|
func (*StudentReq) Descriptor() ([]byte, []int) {
|
|
func (*StudentReq) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{35}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{38}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *StudentReq) XXX_Unmarshal(b []byte) error {
|
|
func (m *StudentReq) XXX_Unmarshal(b []byte) error {
|
|
@@ -1881,7 +2030,7 @@ func (m *StudentRes) Reset() { *m = StudentRes{} }
|
|
|
func (m *StudentRes) String() string { return proto.CompactTextString(m) }
|
|
func (m *StudentRes) String() string { return proto.CompactTextString(m) }
|
|
|
func (*StudentRes) ProtoMessage() {}
|
|
func (*StudentRes) ProtoMessage() {}
|
|
|
func (*StudentRes) Descriptor() ([]byte, []int) {
|
|
func (*StudentRes) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_cb4a498eeb2ba07d, []int{36}
|
|
|
|
|
|
|
+ return fileDescriptor_cb4a498eeb2ba07d, []int{39}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *StudentRes) XXX_Unmarshal(b []byte) error {
|
|
func (m *StudentRes) XXX_Unmarshal(b []byte) error {
|
|
@@ -1931,6 +2080,9 @@ func init() {
|
|
|
proto.RegisterType((*Empty)(nil), "transform.Empty")
|
|
proto.RegisterType((*Empty)(nil), "transform.Empty")
|
|
|
proto.RegisterType((*TreeNodes)(nil), "transform.TreeNodes")
|
|
proto.RegisterType((*TreeNodes)(nil), "transform.TreeNodes")
|
|
|
proto.RegisterType((*TreeNode)(nil), "transform.TreeNode")
|
|
proto.RegisterType((*TreeNode)(nil), "transform.TreeNode")
|
|
|
|
|
+ proto.RegisterType((*ErpMktNetWorkDetail)(nil), "transform.ErpMktNetWorkDetail")
|
|
|
|
|
+ proto.RegisterType((*ErpMktNetWorkDetailRes)(nil), "transform.ErpMktNetWorkDetailRes")
|
|
|
|
|
+ proto.RegisterType((*ErpMktNetWorkDetailReq)(nil), "transform.ErpMktNetWorkDetailReq")
|
|
|
proto.RegisterType((*Tag)(nil), "transform.Tag")
|
|
proto.RegisterType((*Tag)(nil), "transform.Tag")
|
|
|
proto.RegisterType((*OptionsetReq)(nil), "transform.OptionsetReq")
|
|
proto.RegisterType((*OptionsetReq)(nil), "transform.OptionsetReq")
|
|
|
proto.RegisterType((*OptionsetRes)(nil), "transform.OptionsetRes")
|
|
proto.RegisterType((*OptionsetRes)(nil), "transform.OptionsetRes")
|
|
@@ -1970,106 +2122,112 @@ func init() {
|
|
|
func init() { proto.RegisterFile("transform.proto", fileDescriptor_cb4a498eeb2ba07d) }
|
|
func init() { proto.RegisterFile("transform.proto", fileDescriptor_cb4a498eeb2ba07d) }
|
|
|
|
|
|
|
|
var fileDescriptor_cb4a498eeb2ba07d = []byte{
|
|
var fileDescriptor_cb4a498eeb2ba07d = []byte{
|
|
|
- // 1578 bytes of a gzipped FileDescriptorProto
|
|
|
|
|
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x49, 0x6f, 0xdc, 0xb6,
|
|
|
|
|
- 0x17, 0xc7, 0x8c, 0x3c, 0xdb, 0xf3, 0x78, 0x63, 0x6c, 0x47, 0xd1, 0xdf, 0xff, 0xd6, 0x20, 0xd2,
|
|
|
|
|
- 0xd6, 0xb9, 0xf8, 0x90, 0x00, 0x6d, 0x60, 0x04, 0x69, 0xbc, 0xc5, 0x18, 0xc0, 0x5b, 0x35, 0x0e,
|
|
|
|
|
- 0x8a, 0x9e, 0x0c, 0x65, 0xc4, 0x8c, 0xd5, 0xd1, 0x88, 0x63, 0x91, 0x93, 0x66, 0xbe, 0x40, 0x0f,
|
|
|
|
|
- 0xbd, 0xb6, 0xd7, 0x7e, 0xab, 0xde, 0xfa, 0x49, 0x7a, 0x29, 0x8a, 0x47, 0x52, 0x12, 0x67, 0x73,
|
|
|
|
|
- 0x92, 0xa2, 0xb9, 0xf1, 0x2d, 0x7c, 0x7c, 0x7c, 0x7c, 0xcb, 0x4f, 0x82, 0x15, 0x99, 0x06, 0x89,
|
|
|
|
|
- 0x78, 0xc3, 0xd3, 0xfe, 0xee, 0x20, 0xe5, 0x92, 0x93, 0x46, 0xce, 0xa0, 0x4f, 0x60, 0xf1, 0x95,
|
|
|
|
|
- 0x60, 0xa9, 0xcf, 0x6e, 0x87, 0x4c, 0x48, 0xb2, 0x0c, 0xe5, 0x28, 0x74, 0x4b, 0xdb, 0xa5, 0x9d,
|
|
|
|
|
- 0x86, 0x5f, 0x8e, 0x42, 0xb2, 0x0e, 0x95, 0xc1, 0x0d, 0x4f, 0x98, 0x5b, 0x56, 0x2c, 0x4d, 0xd0,
|
|
|
|
|
- 0x3f, 0x4a, 0xd0, 0xd4, 0xbb, 0xc4, 0x80, 0x27, 0x82, 0x7d, 0xd8, 0x36, 0xe4, 0xa6, 0x3c, 0x66,
|
|
|
|
|
- 0xc2, 0x75, 0x34, 0x57, 0x11, 0x64, 0x13, 0xaa, 0x42, 0x06, 0x72, 0x28, 0xdc, 0x85, 0xed, 0xd2,
|
|
|
|
|
- 0x8e, 0xe3, 0x1b, 0x8a, 0x6c, 0xc3, 0x22, 0x4b, 0x07, 0x3e, 0x8f, 0xd9, 0xd5, 0x68, 0xc0, 0xdc,
|
|
|
|
|
- 0x8a, 0x12, 0xda, 0x2c, 0xe2, 0x41, 0x7d, 0x28, 0x58, 0x7a, 0x1e, 0xf4, 0x99, 0x5b, 0x55, 0x26,
|
|
|
|
|
- 0x73, 0x1a, 0x65, 0x9d, 0x48, 0x8e, 0x94, 0xac, 0xa6, 0x65, 0x19, 0x8d, 0x27, 0x76, 0x59, 0x12,
|
|
|
|
|
- 0xb2, 0xd4, 0xad, 0xeb, 0x13, 0x35, 0x45, 0x1f, 0x42, 0xf3, 0x8a, 0xf7, 0x58, 0x92, 0x05, 0x63,
|
|
|
|
|
- 0x1d, 0x2a, 0x12, 0x69, 0x73, 0x31, 0x4d, 0xd0, 0xdf, 0xcb, 0xb0, 0x64, 0xd4, 0xcc, 0xed, 0x37,
|
|
|
|
|
- 0xa1, 0x8a, 0xd1, 0x68, 0x65, 0x11, 0x30, 0x14, 0xde, 0x40, 0x45, 0x89, 0xc7, 0xac, 0x15, 0x0a,
|
|
|
|
|
- 0x13, 0x0b, 0x9b, 0x45, 0x1e, 0xc2, 0x12, 0x92, 0xed, 0xce, 0x0d, 0xe7, 0x31, 0xea, 0xe8, 0xc8,
|
|
|
|
|
- 0x8c, 0x33, 0xc9, 0x0e, 0xac, 0x20, 0xe3, 0x32, 0xe5, 0x6f, 0xa3, 0xa4, 0xa3, 0x6c, 0x2d, 0x28,
|
|
|
|
|
- 0xbd, 0x49, 0x36, 0xa1, 0xfa, 0x5d, 0x2e, 0xd2, 0x6e, 0x90, 0xa0, 0x5a, 0x45, 0xa9, 0x8d, 0xf1,
|
|
|
|
|
- 0xd0, 0xab, 0xf6, 0x48, 0x64, 0xd6, 0x4d, 0xe0, 0x6c, 0x16, 0xf9, 0x0c, 0xa0, 0x3d, 0x12, 0x66,
|
|
|
|
|
- 0x83, 0x89, 0x9e, 0xc5, 0x21, 0x5b, 0xd0, 0x50, 0x07, 0xab, 0x17, 0xae, 0x2b, 0x71, 0xc1, 0xa0,
|
|
|
|
|
- 0x35, 0xa8, 0x1c, 0xf7, 0x07, 0x72, 0x44, 0xbf, 0x86, 0xc6, 0x55, 0xca, 0xd8, 0x39, 0x0f, 0x99,
|
|
|
|
|
- 0x20, 0x8f, 0xa0, 0x92, 0xe0, 0xc2, 0x2d, 0x6d, 0x3b, 0x3b, 0x8b, 0x8f, 0xef, 0xed, 0x16, 0x39,
|
|
|
|
|
- 0x99, 0x29, 0xf9, 0x5a, 0x83, 0xfe, 0x5a, 0x82, 0x7a, 0xc6, 0xb3, 0x32, 0xcb, 0x51, 0x99, 0x45,
|
|
|
|
|
- 0x60, 0x41, 0xb2, 0x77, 0xd2, 0x04, 0x53, 0xad, 0x31, 0xfe, 0x83, 0x20, 0x65, 0x89, 0x54, 0xe1,
|
|
|
|
|
- 0x73, 0x7c, 0x43, 0x91, 0x6d, 0x70, 0x64, 0xd0, 0x55, 0xb1, 0x5a, 0x7c, 0xbc, 0x6c, 0x9f, 0x18,
|
|
|
|
|
- 0x74, 0x7d, 0x14, 0x15, 0x5e, 0x55, 0xde, 0xeb, 0xd5, 0x23, 0x70, 0xae, 0x82, 0xee, 0x2c, 0x7f,
|
|
|
|
|
- 0x12, 0xcc, 0x31, 0xe3, 0x0f, 0xae, 0x29, 0x85, 0xe6, 0xc5, 0x40, 0x46, 0x98, 0x1b, 0xd2, 0x67,
|
|
|
|
|
- 0xb7, 0xa8, 0xd3, 0xe1, 0x21, 0x33, 0xd9, 0xa1, 0xd6, 0xf4, 0x97, 0xd2, 0x98, 0x92, 0x20, 0xcf,
|
|
|
|
|
- 0xa1, 0xd6, 0x0f, 0x06, 0xa7, 0x91, 0x90, 0x26, 0x44, 0x0f, 0x2d, 0x67, 0x6c, 0xcd, 0xdd, 0x33,
|
|
|
|
|
- 0xad, 0x76, 0x9c, 0xc8, 0x74, 0xe4, 0x67, 0x9b, 0xbc, 0x3d, 0x68, 0xda, 0x02, 0xb2, 0x0a, 0x4e,
|
|
|
|
|
- 0x8f, 0x8d, 0xcc, 0x99, 0xb8, 0xc4, 0x74, 0x7e, 0x1b, 0xc4, 0xc3, 0xbc, 0x28, 0x15, 0xb1, 0x57,
|
|
|
|
|
- 0x7e, 0x5a, 0xa2, 0xdb, 0x00, 0xfa, 0x84, 0x43, 0x0c, 0xf9, 0x2c, 0x77, 0x4f, 0xa0, 0x66, 0x7c,
|
|
|
|
|
- 0x98, 0x25, 0x9e, 0x15, 0x85, 0xe2, 0x38, 0xc7, 0x3a, 0x0e, 0x63, 0x93, 0xd5, 0xcd, 0xc1, 0x48,
|
|
|
|
|
- 0xaa, 0x9d, 0x61, 0x20, 0x03, 0x65, 0xad, 0xe9, 0xab, 0x35, 0xfd, 0xb3, 0x04, 0x8b, 0xc7, 0xef,
|
|
|
|
|
- 0x3a, 0x2c, 0x3e, 0xe5, 0x5d, 0x8c, 0xdf, 0x26, 0x54, 0xcf, 0x78, 0x38, 0x8c, 0xb3, 0x33, 0x0d,
|
|
|
|
|
- 0x85, 0x7b, 0x0f, 0x79, 0x12, 0x66, 0xa7, 0xe2, 0x1a, 0xeb, 0xfe, 0x30, 0x65, 0x81, 0x64, 0x07,
|
|
|
|
|
- 0x23, 0x73, 0x70, 0x4e, 0x63, 0x5e, 0xeb, 0xf5, 0x55, 0xd4, 0x67, 0xa6, 0x84, 0x2c, 0x0e, 0x56,
|
|
|
|
|
- 0xcf, 0x69, 0x20, 0xe4, 0xab, 0x41, 0xa8, 0xf7, 0x9b, 0xea, 0xb1, 0x79, 0xe4, 0x4b, 0x58, 0x2e,
|
|
|
|
|
- 0x68, 0x65, 0x47, 0x17, 0xd0, 0x04, 0x97, 0xb8, 0x50, 0x3b, 0x62, 0xf1, 0xcb, 0x38, 0xe8, 0x9a,
|
|
|
|
|
- 0x02, 0xca, 0x48, 0xfa, 0x85, 0x7d, 0x39, 0xd5, 0xfe, 0xda, 0xba, 0xfd, 0xe9, 0xa4, 0x32, 0x14,
|
|
|
|
|
- 0x36, 0xa3, 0xbc, 0x03, 0x60, 0x10, 0xd6, 0xa1, 0x82, 0x61, 0xd5, 0x05, 0xd4, 0xf0, 0x35, 0x41,
|
|
|
|
|
- 0xff, 0x0f, 0x0d, 0x7c, 0xf2, 0x8b, 0x37, 0xad, 0x44, 0xe2, 0x93, 0x47, 0xa1, 0x56, 0x70, 0x7c,
|
|
|
|
|
- 0x5c, 0xaa, 0x2c, 0xb3, 0xac, 0xbc, 0x27, 0xcb, 0x6c, 0xcd, 0xff, 0x26, 0xcb, 0x1c, 0x3b, 0xcb,
|
|
|
|
|
- 0x28, 0xc0, 0x61, 0x24, 0x47, 0xd3, 0xf7, 0x29, 0x15, 0xf7, 0xf9, 0xb9, 0x64, 0x29, 0x09, 0xf2,
|
|
|
|
|
- 0x6c, 0xd2, 0x5d, 0x6a, 0xb9, 0x5b, 0xe8, 0x7d, 0x02, 0x67, 0xb7, 0xa0, 0x8e, 0xf9, 0xa9, 0x5c,
|
|
|
|
|
- 0x5d, 0x05, 0x27, 0x65, 0xb7, 0x26, 0x45, 0x71, 0x49, 0x3f, 0x87, 0x86, 0x91, 0x8a, 0x01, 0xa6,
|
|
|
|
|
- 0x61, 0xca, 0xc4, 0x20, 0x4b, 0x61, 0x5c, 0xd3, 0x36, 0x2c, 0x9d, 0x30, 0x79, 0xac, 0x87, 0x15,
|
|
|
|
|
- 0xde, 0xe4, 0x3e, 0xd4, 0x70, 0x36, 0x5d, 0xe7, 0x63, 0xb2, 0x3a, 0xd4, 0x43, 0x02, 0x77, 0xf3,
|
|
|
|
|
- 0x38, 0x2f, 0x1d, 0x5c, 0x93, 0x0d, 0xa8, 0x8a, 0xce, 0x0d, 0xea, 0xea, 0x86, 0x56, 0x11, 0x9d,
|
|
|
|
|
- 0x9b, 0x56, 0x48, 0x5f, 0x8c, 0x1b, 0x55, 0x85, 0xd1, 0xe7, 0xaf, 0xa3, 0xa2, 0x30, 0x34, 0x65,
|
|
|
|
|
- 0x1f, 0x56, 0xb6, 0x0f, 0xa3, 0xdf, 0xc0, 0x96, 0xb6, 0xa0, 0x5a, 0x79, 0xbb, 0x73, 0x73, 0xc9,
|
|
|
|
|
- 0xd2, 0x83, 0x91, 0x1e, 0x57, 0x68, 0x70, 0x9e, 0x97, 0xf4, 0xfc, 0xce, 0x8d, 0x82, 0xec, 0x2a,
|
|
|
|
|
- 0x8f, 0x39, 0x8f, 0xcd, 0x3b, 0x6d, 0xda, 0xcd, 0xcb, 0x6c, 0xe1, 0x3c, 0xf6, 0x8d, 0x16, 0x3d,
|
|
|
|
|
- 0x85, 0x45, 0x8b, 0xfd, 0x21, 0x5d, 0x95, 0x3c, 0x80, 0x3a, 0xc7, 0x2d, 0x45, 0x58, 0x6a, 0x5c,
|
|
|
|
|
- 0x0f, 0x24, 0xba, 0x0f, 0x2b, 0xda, 0x3b, 0x73, 0xca, 0xbf, 0x70, 0x68, 0x27, 0x33, 0xb1, 0xdf,
|
|
|
|
|
- 0x91, 0xd1, 0x5b, 0x15, 0xdd, 0xe2, 0x15, 0xd0, 0xb1, 0x85, 0xec, 0x15, 0x9e, 0x4d, 0x6a, 0xe2,
|
|
|
|
|
- 0x70, 0xab, 0x06, 0x8a, 0x30, 0x87, 0xad, 0x59, 0x87, 0x19, 0x2d, 0xa3, 0x40, 0x9f, 0x43, 0x55,
|
|
|
|
|
- 0x73, 0xc8, 0xff, 0xa0, 0xa1, 0x79, 0xd7, 0xf9, 0xd5, 0xeb, 0x9a, 0xd1, 0x0a, 0xf1, 0x21, 0xfa,
|
|
|
|
|
- 0xc1, 0xb5, 0x15, 0x83, 0x6a, 0x3f, 0x40, 0xec, 0x42, 0x5b, 0xb0, 0x76, 0x14, 0xc8, 0xe0, 0x92,
|
|
|
|
|
- 0xa5, 0xfd, 0x48, 0x88, 0x88, 0x23, 0x58, 0x41, 0x53, 0xe9, 0x30, 0x66, 0xd7, 0x56, 0x5f, 0xae,
|
|
|
|
|
- 0x23, 0x43, 0xb5, 0xf3, 0xb9, 0xc9, 0xf0, 0x5b, 0x69, 0xda, 0x96, 0x20, 0x87, 0x93, 0x25, 0xf7,
|
|
|
|
|
- 0xc8, 0xba, 0xcc, 0x94, 0xfa, 0x27, 0x18, 0x46, 0x7f, 0x2f, 0x40, 0xf5, 0xac, 0xa7, 0x06, 0xe7,
|
|
|
|
|
- 0x32, 0x94, 0x5b, 0x79, 0x5a, 0xe8, 0x5a, 0x39, 0xeb, 0xb5, 0xf2, 0x86, 0x8f, 0x6b, 0x6c, 0xc8,
|
|
|
|
|
- 0x97, 0x41, 0x2a, 0xb1, 0xe9, 0x1a, 0x10, 0xa6, 0x93, 0x63, 0x82, 0x6b, 0x81, 0x34, 0x03, 0x33,
|
|
|
|
|
- 0x0d, 0xdf, 0x85, 0x5a, 0x5b, 0x0e, 0x15, 0x4e, 0xd4, 0xfd, 0x3e, 0x23, 0x71, 0x94, 0xec, 0x77,
|
|
|
|
|
- 0xd9, 0x49, 0xca, 0x87, 0x03, 0xd5, 0xe4, 0x1d, 0x3f, 0xa7, 0x11, 0xb8, 0xb5, 0xe5, 0xf0, 0x34,
|
|
|
|
|
- 0x4a, 0x7a, 0x97, 0x2c, 0x15, 0x3c, 0x51, 0x4d, 0xde, 0xf1, 0xc7, 0x99, 0x68, 0xa1, 0x2d, 0x87,
|
|
|
|
|
- 0x36, 0x4e, 0xca, 0x69, 0x0c, 0x40, 0x1b, 0xf3, 0xc9, 0x6d, 0xe8, 0x12, 0x57, 0x04, 0x7a, 0xb3,
|
|
|
|
|
- 0x1f, 0x86, 0x29, 0x13, 0xc2, 0x05, 0xed, 0x8d, 0x21, 0x27, 0x86, 0xd7, 0xe2, 0xd4, 0xf0, 0xb2,
|
|
|
|
|
- 0x06, 0x4e, 0x53, 0x57, 0x87, 0x21, 0xd5, 0xce, 0x1b, 0xd6, 0xe9, 0xe1, 0x60, 0x61, 0xee, 0x92,
|
|
|
|
|
- 0x12, 0x5a, 0x1c, 0x84, 0x73, 0x8a, 0x52, 0x86, 0x97, 0x35, 0x9c, 0xcb, 0x19, 0x68, 0x57, 0x11,
|
|
|
|
|
- 0x07, 0x23, 0x77, 0x45, 0x7b, 0x64, 0x48, 0x84, 0xa5, 0xe7, 0x4c, 0xfe, 0xc4, 0xd3, 0xde, 0x11,
|
|
|
|
|
- 0x93, 0x41, 0x84, 0x60, 0x72, 0x55, 0x19, 0x9f, 0x64, 0xab, 0x48, 0x9a, 0xcc, 0x76, 0xd7, 0x4c,
|
|
|
|
|
- 0x24, 0xb3, 0x4c, 0xc7, 0x81, 0x1d, 0xc4, 0xb1, 0xc2, 0xf8, 0x44, 0xcb, 0x32, 0x5a, 0x0d, 0xfe,
|
|
|
|
|
- 0x40, 0x49, 0xee, 0xe9, 0x37, 0xd3, 0x14, 0xfa, 0xf4, 0xdd, 0x30, 0xe0, 0x3f, 0xfc, 0x18, 0xb9,
|
|
|
|
|
- 0xeb, 0xfa, 0xae, 0x86, 0xc4, 0x77, 0x39, 0xeb, 0x49, 0x65, 0x5c, 0x4d, 0x07, 0x77, 0x43, 0xbf,
|
|
|
|
|
- 0xcb, 0x18, 0x13, 0x6f, 0x7c, 0xca, 0x83, 0x50, 0xc7, 0x7f, 0x53, 0x69, 0x14, 0x0c, 0xba, 0x6d,
|
|
|
|
|
- 0xf2, 0x6f, 0xfe, 0x6c, 0xde, 0x02, 0x68, 0xcb, 0x61, 0xc8, 0x92, 0x59, 0x59, 0x4a, 0xaf, 0x2c,
|
|
|
|
|
- 0xa9, 0x98, 0xca, 0x61, 0x3b, 0x27, 0xca, 0x13, 0x39, 0x71, 0x07, 0x78, 0x79, 0xfc, 0x57, 0x1d,
|
|
|
|
|
- 0xe1, 0xb4, 0x29, 0x44, 0xb2, 0x07, 0xb5, 0x13, 0x26, 0x31, 0x85, 0x89, 0xdd, 0xd9, 0xac, 0x4f,
|
|
|
|
|
- 0x39, 0xef, 0xfe, 0x14, 0xdf, 0x7c, 0xae, 0x7c, 0x0b, 0x70, 0x19, 0xa4, 0x82, 0xa9, 0x8f, 0x18,
|
|
|
|
|
- 0x62, 0xab, 0xd9, 0x5f, 0x3f, 0x9e, 0x3b, 0x2d, 0x30, 0x06, 0x9e, 0xc2, 0xb2, 0xee, 0x80, 0x38,
|
|
|
|
|
- 0x81, 0x11, 0x27, 0x93, 0x55, 0x4b, 0x57, 0x81, 0x7f, 0x6f, 0x7d, 0x06, 0x94, 0x56, 0x5d, 0x79,
|
|
|
|
|
- 0x3f, 0x0c, 0xcf, 0x7a, 0x92, 0xd8, 0x2d, 0x52, 0x57, 0xbb, 0x37, 0xc5, 0x12, 0x64, 0x1f, 0x96,
|
|
|
|
|
- 0xf0, 0x5d, 0x72, 0xf8, 0x3b, 0xe6, 0xad, 0x8d, 0xb1, 0xbd, 0x39, 0x02, 0x41, 0x5e, 0x40, 0xf3,
|
|
|
|
|
- 0x84, 0xc9, 0xe2, 0x63, 0xea, 0xfe, 0x6c, 0xc0, 0x33, 0x6e, 0x61, 0x0c, 0x33, 0xed, 0x01, 0x9c,
|
|
|
|
|
- 0x30, 0x69, 0xd0, 0x06, 0xd9, 0x98, 0x85, 0x40, 0x6e, 0xbd, 0x99, 0x6c, 0xc4, 0x5b, 0xcd, 0x4b,
|
|
|
|
|
- 0x2e, 0x64, 0x06, 0xf8, 0xc6, 0x1e, 0xcb, 0x82, 0xb8, 0xde, 0x6c, 0x3e, 0x02, 0x20, 0x33, 0x6c,
|
|
|
|
|
- 0x8a, 0x10, 0x6c, 0x4c, 0xdd, 0x14, 0xdb, 0xbc, 0x47, 0xa6, 0x03, 0x60, 0x3c, 0x37, 0xc9, 0x38,
|
|
|
|
|
- 0xb6, 0xb1, 0x48, 0x5f, 0x6f, 0x26, 0x5b, 0x90, 0x0b, 0x58, 0x3b, 0x61, 0x72, 0xbc, 0xe1, 0x93,
|
|
|
|
|
- 0xad, 0x3b, 0x66, 0xc1, 0xad, 0x77, 0x97, 0x54, 0x90, 0x23, 0xf0, 0xf4, 0x55, 0xce, 0x7a, 0xf2,
|
|
|
|
|
- 0x9c, 0xc9, 0xef, 0xf3, 0x06, 0xf1, 0x51, 0x19, 0xd4, 0x87, 0x07, 0x73, 0x81, 0x08, 0xf9, 0xca,
|
|
|
|
|
- 0xda, 0x72, 0x17, 0xce, 0xf1, 0x3e, 0x50, 0x11, 0xb3, 0x07, 0x0a, 0xc8, 0x45, 0xdc, 0xa9, 0x6d,
|
|
|
|
|
- 0x06, 0x89, 0x79, 0xf3, 0x24, 0xf8, 0x82, 0x4d, 0x1b, 0x9b, 0xcc, 0xb8, 0xa8, 0x37, 0xb5, 0xb7,
|
|
|
|
|
- 0x80, 0x31, 0x2f, 0xb3, 0xdd, 0x06, 0x34, 0x4c, 0xeb, 0xe6, 0x78, 0xc5, 0x9b, 0x2f, 0x43, 0x2f,
|
|
|
|
|
- 0xc8, 0xf8, 0x3d, 0x3f, 0x26, 0xe8, 0xaf, 0xab, 0xea, 0xb7, 0xd1, 0x93, 0x7f, 0x02, 0x00, 0x00,
|
|
|
|
|
- 0xff, 0xff, 0x7b, 0x75, 0x86, 0xad, 0x49, 0x12, 0x00, 0x00,
|
|
|
|
|
|
|
+ // 1666 bytes of a gzipped FileDescriptorProto
|
|
|
|
|
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4f, 0x6f, 0x1b, 0xb7,
|
|
|
|
|
+ 0x12, 0x87, 0x24, 0xeb, 0xdf, 0x48, 0xb6, 0x63, 0xc6, 0x76, 0x36, 0xfb, 0xfc, 0xf2, 0xfc, 0x88,
|
|
|
|
|
+ 0xbc, 0xf7, 0x9c, 0x77, 0xf0, 0x21, 0x29, 0xda, 0xc0, 0x08, 0xd2, 0xf8, 0x5f, 0x0c, 0x01, 0xfe,
|
|
|
|
|
+ 0x57, 0xc9, 0x41, 0xd1, 0x4b, 0x8d, 0x8d, 0x96, 0x91, 0xb7, 0x5a, 0x2d, 0xe5, 0x25, 0x95, 0x46,
|
|
|
|
|
+ 0x5f, 0xa0, 0x87, 0x5e, 0xdb, 0x6b, 0xfb, 0xa9, 0x7a, 0x29, 0xfa, 0x5d, 0x8a, 0x62, 0x48, 0xee,
|
|
|
|
|
+ 0x2e, 0x25, 0xad, 0xec, 0xa4, 0x6d, 0x6e, 0x3b, 0x3f, 0xce, 0x0c, 0x67, 0x86, 0xc3, 0x99, 0xe1,
|
|
|
|
|
+ 0xc2, 0xb2, 0x8c, 0xbd, 0x48, 0xbc, 0xe1, 0xf1, 0x60, 0x7b, 0x18, 0x73, 0xc9, 0x49, 0x3d, 0x05,
|
|
|
|
|
+ 0xe8, 0x13, 0x68, 0xbc, 0x12, 0x2c, 0x6e, 0xb3, 0xeb, 0x11, 0x13, 0x92, 0x2c, 0x41, 0x31, 0xf0,
|
|
|
|
|
+ 0x9d, 0xc2, 0x66, 0x61, 0xab, 0xde, 0x2e, 0x06, 0x3e, 0x59, 0x85, 0xf2, 0xf0, 0x8a, 0x47, 0xcc,
|
|
|
|
|
+ 0x29, 0x2a, 0x48, 0x13, 0xf4, 0x97, 0x02, 0x34, 0xb5, 0x94, 0x18, 0xf2, 0x48, 0xb0, 0xf7, 0x13,
|
|
|
|
|
+ 0x43, 0x34, 0xe6, 0x21, 0x13, 0x4e, 0x49, 0xa3, 0x8a, 0x20, 0xeb, 0x50, 0x11, 0xd2, 0x93, 0x23,
|
|
|
|
|
+ 0xe1, 0x2c, 0x6c, 0x16, 0xb6, 0x4a, 0x6d, 0x43, 0x91, 0x4d, 0x68, 0xb0, 0x78, 0xd8, 0xe6, 0x21,
|
|
|
|
|
+ 0xbb, 0x18, 0x0f, 0x99, 0x53, 0x56, 0x8b, 0x36, 0x44, 0x5c, 0xa8, 0x8d, 0x04, 0x8b, 0x4f, 0xbd,
|
|
|
|
|
+ 0x01, 0x73, 0x2a, 0x4a, 0x65, 0x4a, 0xe3, 0x5a, 0x37, 0x90, 0x63, 0xb5, 0x56, 0xd5, 0x6b, 0x09,
|
|
|
|
|
+ 0x8d, 0x3b, 0xf6, 0x58, 0xe4, 0xb3, 0xd8, 0xa9, 0xe9, 0x1d, 0x35, 0x45, 0x1f, 0x42, 0xf3, 0x82,
|
|
|
|
|
+ 0xf7, 0x59, 0x94, 0x04, 0x63, 0x15, 0xca, 0x12, 0x69, 0xe3, 0x98, 0x26, 0xe8, 0x4f, 0x45, 0x58,
|
|
|
|
|
+ 0x34, 0x6c, 0xc6, 0xfb, 0x75, 0xa8, 0x60, 0x34, 0x5a, 0x49, 0x04, 0x0c, 0x85, 0x1e, 0xa8, 0x28,
|
|
|
|
|
+ 0xf1, 0x90, 0xb5, 0x7c, 0x61, 0x62, 0x61, 0x43, 0xe4, 0x21, 0x2c, 0x22, 0xd9, 0xe9, 0x5e, 0x71,
|
|
|
|
|
+ 0x1e, 0x22, 0x8f, 0x8e, 0xcc, 0x24, 0x48, 0xb6, 0x60, 0x19, 0x81, 0xf3, 0x98, 0xbf, 0x0d, 0xa2,
|
|
|
|
|
+ 0xae, 0xd2, 0xb5, 0xa0, 0xf8, 0xa6, 0x61, 0x42, 0xf5, 0xb9, 0x9c, 0xc5, 0x3d, 0x2f, 0x42, 0xb6,
|
|
|
|
|
+ 0xb2, 0x62, 0x9b, 0xc0, 0xd0, 0xaa, 0xce, 0x58, 0x24, 0xda, 0x4d, 0xe0, 0x6c, 0x88, 0x3c, 0x00,
|
|
|
|
|
+ 0xe8, 0x8c, 0x85, 0x11, 0x30, 0xd1, 0xb3, 0x10, 0xb2, 0x01, 0x75, 0xb5, 0xb1, 0x3a, 0xe1, 0x9a,
|
|
|
|
|
+ 0x5a, 0xce, 0x00, 0x5a, 0x85, 0xf2, 0xe1, 0x60, 0x28, 0xc7, 0xf4, 0x53, 0xa8, 0x5f, 0xc4, 0x8c,
|
|
|
|
|
+ 0x9d, 0x72, 0x9f, 0x09, 0xf2, 0x08, 0xca, 0x11, 0x7e, 0x38, 0x85, 0xcd, 0xd2, 0x56, 0xe3, 0xf1,
|
|
|
|
|
+ 0xdd, 0xed, 0x2c, 0x27, 0x13, 0xa6, 0xb6, 0xe6, 0xa0, 0x3f, 0x14, 0xa0, 0x96, 0x60, 0x56, 0x66,
|
|
|
|
|
+ 0x95, 0x54, 0x66, 0x11, 0x58, 0x90, 0xec, 0x9d, 0x34, 0xc1, 0x54, 0xdf, 0x18, 0xff, 0xa1, 0x17,
|
|
|
|
|
+ 0xb3, 0x48, 0xaa, 0xf0, 0x95, 0xda, 0x86, 0x22, 0x9b, 0x50, 0x92, 0x5e, 0x4f, 0xc5, 0xaa, 0xf1,
|
|
|
|
|
+ 0x78, 0xc9, 0xde, 0xd1, 0xeb, 0xb5, 0x71, 0x29, 0xb3, 0xaa, 0x7c, 0xab, 0x55, 0x3f, 0x17, 0xe0,
|
|
|
|
|
+ 0xee, 0x61, 0x3c, 0x3c, 0xe9, 0xcb, 0x53, 0x26, 0xbf, 0xe4, 0x71, 0xff, 0x80, 0x49, 0x2f, 0x08,
|
|
|
|
|
+ 0x3f, 0x40, 0xc5, 0x5f, 0xf4, 0xa5, 0x11, 0x44, 0x57, 0x2c, 0x0e, 0xa4, 0x17, 0x75, 0x99, 0x39,
|
|
|
|
|
+ 0x7f, 0x1b, 0xa2, 0xa7, 0xb0, 0x9e, 0x63, 0x5f, 0x9b, 0x09, 0xf2, 0x09, 0x94, 0x03, 0xc9, 0x06,
|
|
|
|
|
+ 0x89, 0x89, 0x0f, 0x2c, 0x13, 0xf3, 0x24, 0x34, 0x33, 0xfd, 0xff, 0x1c, 0x7d, 0xd7, 0xe4, 0x0e,
|
|
|
|
|
+ 0x94, 0x02, 0x5f, 0x98, 0x64, 0xc7, 0x4f, 0xfa, 0x08, 0x4a, 0x17, 0x5e, 0x2f, 0xcf, 0xc1, 0x08,
|
|
|
|
|
+ 0x2f, 0xa0, 0x71, 0x10, 0xbf, 0x29, 0x85, 0xe6, 0xd9, 0x50, 0x06, 0x78, 0x71, 0x24, 0x2a, 0x23,
|
|
|
|
|
+ 0xb0, 0xd0, 0xe5, 0x3e, 0x33, 0xda, 0xd4, 0x37, 0xfd, 0xbe, 0x30, 0xc1, 0x24, 0xc8, 0x73, 0xa8,
|
|
|
|
|
+ 0x0e, 0xbc, 0xe1, 0x71, 0x20, 0xa4, 0xc9, 0x9f, 0x87, 0x96, 0x0f, 0x36, 0xe7, 0xf6, 0x89, 0x66,
|
|
|
|
|
+ 0x3b, 0x8c, 0x64, 0x3c, 0x6e, 0x27, 0x42, 0xee, 0x0e, 0x34, 0xed, 0x05, 0xf4, 0xa0, 0xcf, 0xc6,
|
|
|
|
|
+ 0x89, 0x07, 0x7d, 0x36, 0xc6, 0xbb, 0xfe, 0xd6, 0x0b, 0x47, 0x69, 0xc5, 0x52, 0xc4, 0x4e, 0xf1,
|
|
|
|
|
+ 0x69, 0x81, 0x6e, 0x02, 0xe8, 0x1d, 0xf6, 0x31, 0x1f, 0xf3, 0xcc, 0x3d, 0x82, 0xaa, 0xb1, 0x21,
|
|
|
|
|
+ 0x6f, 0x39, 0x2f, 0x0a, 0xd9, 0x76, 0x25, 0x6b, 0x3b, 0x8c, 0x4d, 0x52, 0x54, 0xf6, 0xc6, 0x52,
|
|
|
|
|
+ 0x49, 0xfa, 0x9e, 0xf4, 0x94, 0xb6, 0x66, 0x5b, 0x7d, 0xd3, 0xdf, 0x0a, 0xd0, 0x38, 0x7c, 0xd7,
|
|
|
|
|
+ 0x65, 0xe1, 0x31, 0xef, 0x61, 0xfc, 0xd6, 0xa1, 0x72, 0xc2, 0xfd, 0x51, 0x98, 0xec, 0x69, 0x28,
|
|
|
|
|
+ 0x94, 0xdd, 0xe7, 0x91, 0x9f, 0xec, 0x8a, 0xdf, 0x58, 0x14, 0xf7, 0x63, 0xe6, 0x49, 0xb6, 0x37,
|
|
|
|
|
+ 0x36, 0x1b, 0xa7, 0x34, 0x5e, 0x7a, 0xfd, 0x7d, 0x11, 0x0c, 0x92, 0xfc, 0xb2, 0x10, 0x2c, 0x2d,
|
|
|
|
|
+ 0xc7, 0x9e, 0x90, 0xaf, 0x86, 0xbe, 0x96, 0x37, 0xa5, 0xc5, 0xc6, 0xc8, 0x7f, 0x61, 0x29, 0xa3,
|
|
|
|
|
+ 0x95, 0x1e, 0x5d, 0x5d, 0xa6, 0x50, 0xe2, 0x40, 0xf5, 0x80, 0x85, 0x2f, 0x43, 0xaf, 0x67, 0xaa,
|
|
|
|
|
+ 0x4b, 0x42, 0xd2, 0xff, 0xd8, 0xce, 0xa9, 0xde, 0xd0, 0xd1, 0xbd, 0x41, 0x27, 0x95, 0xa1, 0xb0,
|
|
|
|
|
+ 0x52, 0xa7, 0xe5, 0x11, 0x83, 0xb0, 0x0a, 0x65, 0x0c, 0xab, 0xae, 0x2e, 0xf5, 0xb6, 0x26, 0xe8,
|
|
|
|
|
+ 0x3f, 0xa1, 0x8e, 0x47, 0x7e, 0xf6, 0xa6, 0x15, 0xc9, 0x2c, 0x69, 0x4b, 0x5b, 0x25, 0x9d, 0xb4,
|
|
|
|
|
+ 0x98, 0x65, 0x96, 0x96, 0x5b, 0xb2, 0xcc, 0xe6, 0xfc, 0x7b, 0xb2, 0xac, 0x64, 0x67, 0x19, 0x05,
|
|
|
|
|
+ 0xd8, 0x0f, 0xe4, 0x78, 0xd6, 0x9f, 0x42, 0xe6, 0xcf, 0x77, 0x05, 0x8b, 0x49, 0x90, 0x67, 0xd3,
|
|
|
|
|
+ 0xe6, 0x52, 0xcb, 0xdc, 0x8c, 0xef, 0x23, 0x18, 0xbb, 0x01, 0x35, 0xcc, 0x4f, 0x61, 0x8a, 0x41,
|
|
|
|
|
+ 0xcc, 0xae, 0x4d, 0x8a, 0xe2, 0x27, 0xfd, 0x17, 0xd4, 0xcd, 0xaa, 0x18, 0x62, 0x1a, 0xc6, 0x4c,
|
|
|
|
|
+ 0x0c, 0x93, 0x14, 0xc6, 0x6f, 0xda, 0x81, 0xc5, 0x23, 0x26, 0x0f, 0x75, 0x27, 0x47, 0x4f, 0xee,
|
|
|
|
|
+ 0x41, 0x15, 0x1b, 0xf7, 0x65, 0x3a, 0x43, 0x54, 0x46, 0xba, 0x83, 0xa2, 0x34, 0x0f, 0xd3, 0xab,
|
|
|
|
|
+ 0x83, 0xdf, 0x64, 0x0d, 0x2a, 0xa2, 0x7b, 0x85, 0xbc, 0xba, 0x42, 0x96, 0x45, 0xf7, 0xaa, 0xe5,
|
|
|
|
|
+ 0xd3, 0x17, 0x93, 0x4a, 0xd5, 0xc5, 0x18, 0xf0, 0xd7, 0x41, 0x76, 0x31, 0x34, 0x65, 0x6f, 0x56,
|
|
|
|
|
+ 0xb4, 0x37, 0xa3, 0x9f, 0xc1, 0x86, 0xd6, 0xa0, 0xfa, 0x5c, 0xa7, 0x7b, 0x75, 0xce, 0xe2, 0xbd,
|
|
|
|
|
+ 0xb1, 0xee, 0xe5, 0xa8, 0x70, 0x9e, 0x95, 0xf4, 0xf4, 0x46, 0x41, 0x41, 0xb6, 0x95, 0xc5, 0x9c,
|
|
|
|
|
+ 0x87, 0xe6, 0x9c, 0xd6, 0xed, 0xe2, 0x65, 0x44, 0x38, 0x0f, 0xdb, 0x86, 0x8b, 0x1e, 0x43, 0xc3,
|
|
|
|
|
+ 0x82, 0xdf, 0xa7, 0xaa, 0x92, 0xfb, 0x50, 0xe3, 0x28, 0x92, 0x85, 0xa5, 0xca, 0x75, 0xb7, 0xa6,
|
|
|
|
|
+ 0xbb, 0xb0, 0xac, 0xad, 0x33, 0xbb, 0xfc, 0x09, 0x83, 0xb6, 0x12, 0x15, 0xbb, 0x5d, 0x19, 0xbc,
|
|
|
|
|
+ 0x55, 0xd1, 0xcd, 0x4e, 0x01, 0x0d, 0x5b, 0x48, 0x4e, 0xe1, 0xd9, 0x34, 0x27, 0x76, 0xfe, 0x8a,
|
|
|
|
|
+ 0xa7, 0x08, 0xb3, 0xd9, 0x8a, 0xb5, 0x99, 0xe1, 0x32, 0x0c, 0xf4, 0x39, 0x54, 0x34, 0x42, 0xfe,
|
|
|
|
|
+ 0x01, 0x75, 0x8d, 0x5d, 0xa6, 0xae, 0xd7, 0x34, 0xd0, 0xf2, 0xf1, 0x20, 0x06, 0xde, 0xa5, 0x15,
|
|
|
|
|
+ 0x83, 0xca, 0xc0, 0xc3, 0xc1, 0x8e, 0xb6, 0x60, 0xe5, 0xc0, 0x93, 0xde, 0x39, 0x8b, 0x07, 0x81,
|
|
|
|
|
+ 0x10, 0x01, 0xc7, 0x49, 0x0e, 0x55, 0xc5, 0xa3, 0x90, 0x5d, 0x5a, 0x75, 0xb9, 0x86, 0x80, 0x2a,
|
|
|
|
|
+ 0xe7, 0x73, 0x93, 0xe1, 0xc7, 0xc2, 0xac, 0x2e, 0x41, 0xf6, 0xa7, 0xaf, 0xdc, 0x23, 0xcb, 0x99,
|
|
|
|
|
+ 0x19, 0xf6, 0x8f, 0xd0, 0x8c, 0x7e, 0x5f, 0x80, 0xca, 0x49, 0x5f, 0x35, 0xce, 0x25, 0x28, 0xb6,
|
|
|
|
|
+ 0xd2, 0xb4, 0xd0, 0x77, 0xe5, 0xa4, 0xdf, 0x4a, 0x0b, 0x3e, 0x7e, 0x63, 0x41, 0x3e, 0xf7, 0x62,
|
|
|
|
|
+ 0x89, 0x45, 0xd7, 0x4c, 0xa8, 0x3a, 0x39, 0xa6, 0x50, 0x6b, 0x82, 0x35, 0x33, 0xb8, 0xc1, 0x1d,
|
|
|
|
|
+ 0xa8, 0x76, 0xe4, 0x48, 0x0d, 0xd1, 0xba, 0xde, 0x27, 0x24, 0xb6, 0x92, 0xdd, 0x1e, 0x3b, 0x8a,
|
|
|
|
|
+ 0xf9, 0x68, 0xa8, 0x8a, 0x7c, 0xa9, 0x9d, 0xd2, 0x38, 0xd5, 0x76, 0xe4, 0xe8, 0x38, 0x88, 0xfa,
|
|
|
|
|
+ 0xe7, 0x2c, 0x16, 0x3c, 0x52, 0x45, 0xbe, 0xd4, 0x9e, 0x04, 0x51, 0x43, 0x47, 0x8e, 0xec, 0x21,
|
|
|
|
|
+ 0x32, 0xa5, 0x31, 0x00, 0x1d, 0xcc, 0x27, 0xa7, 0xae, 0xaf, 0xb8, 0x22, 0xd0, 0x9a, 0x5d, 0xdf,
|
|
|
|
|
+ 0x8f, 0x99, 0x10, 0x0e, 0x68, 0x6b, 0x0c, 0x39, 0xd5, 0xbc, 0x1a, 0x33, 0xcd, 0xcb, 0x6a, 0x38,
|
|
|
|
|
+ 0x4d, 0x7d, 0x3b, 0x0c, 0xa9, 0x24, 0xaf, 0x58, 0xb7, 0x8f, 0x8d, 0x85, 0x39, 0x8b, 0x6a, 0xd1,
|
|
|
|
|
+ 0x42, 0x70, 0xd6, 0x55, 0x94, 0x52, 0xbc, 0xa4, 0x67, 0xdd, 0x14, 0x40, 0xbd, 0x8a, 0xd8, 0x1b,
|
|
|
|
|
+ 0x3b, 0xcb, 0xda, 0x22, 0x43, 0xe2, 0xcc, 0x7e, 0xca, 0xe4, 0xb7, 0xe9, 0xdc, 0xd4, 0xf2, 0x9d,
|
|
|
|
|
+ 0x3b, 0x4a, 0xf9, 0x34, 0xac, 0x22, 0x69, 0x32, 0xdb, 0x59, 0x31, 0x91, 0x4c, 0x32, 0x1d, 0x1b,
|
|
|
|
|
+ 0xb6, 0x17, 0x86, 0xea, 0x01, 0x44, 0xf4, 0x5a, 0x42, 0xab, 0xc6, 0xef, 0xa9, 0x95, 0xbb, 0xfa,
|
|
|
|
|
+ 0xcc, 0x34, 0x85, 0x36, 0x7d, 0x31, 0xf2, 0xf8, 0x57, 0xdf, 0x04, 0xce, 0xaa, 0xf6, 0xd5, 0x90,
|
|
|
|
|
+ 0x78, 0x2e, 0x27, 0x7d, 0xa9, 0x94, 0xab, 0xee, 0xe0, 0xac, 0xe9, 0x73, 0x99, 0x00, 0xd1, 0xe3,
|
|
|
|
|
+ 0x63, 0xee, 0xf9, 0x3a, 0xfe, 0xeb, 0x8a, 0x23, 0x03, 0xe8, 0xa6, 0xc9, 0xbf, 0xf9, 0xbd, 0x79,
|
|
|
|
|
+ 0x03, 0xa0, 0x23, 0x47, 0x3e, 0x8b, 0xf2, 0xb2, 0x94, 0x5e, 0x58, 0xab, 0x62, 0x26, 0x87, 0xed,
|
|
|
|
|
+ 0x9c, 0x28, 0x4e, 0xe5, 0xc4, 0x0d, 0xc3, 0xcb, 0xe3, 0x5f, 0xeb, 0xf8, 0xd6, 0x30, 0x17, 0x91,
|
|
|
|
|
+ 0xec, 0x40, 0xf5, 0x88, 0x49, 0x4c, 0x61, 0x62, 0x57, 0x36, 0xeb, 0x9d, 0xeb, 0xde, 0x9b, 0xc1,
|
|
|
|
|
+ 0xcd, 0x5b, 0xee, 0x73, 0x80, 0x73, 0x2f, 0x16, 0x4c, 0xbd, 0xf0, 0x88, 0xcd, 0x66, 0x3f, 0x0d,
|
|
|
|
|
+ 0x5d, 0x67, 0x76, 0xc1, 0x28, 0x78, 0x0a, 0x4b, 0xba, 0x02, 0x62, 0x07, 0xc6, 0x17, 0x00, 0xb9,
|
|
|
|
|
+ 0x63, 0xcf, 0xdb, 0xf8, 0x32, 0x72, 0x57, 0x73, 0x1e, 0x09, 0xaa, 0x2a, 0xef, 0xfa, 0xfe, 0x49,
|
|
|
|
|
+ 0x5f, 0x12, 0xbb, 0x44, 0xea, 0xdb, 0xee, 0xce, 0x40, 0x82, 0xec, 0xc2, 0x22, 0x9e, 0x4b, 0x3a,
|
|
|
|
|
+ 0xfe, 0x4e, 0x58, 0x6b, 0xcf, 0xd8, 0xee, 0x9c, 0x05, 0x41, 0x5e, 0x40, 0xf3, 0x88, 0xc9, 0xec,
|
|
|
|
|
+ 0xa5, 0x79, 0x2f, 0x7f, 0xe0, 0x99, 0xd4, 0x30, 0x31, 0x33, 0xed, 0x00, 0x1c, 0x31, 0x69, 0xa6,
|
|
|
|
|
+ 0x0d, 0xb2, 0x96, 0x37, 0x81, 0x5c, 0xbb, 0xb9, 0x30, 0xce, 0x5b, 0xcd, 0x73, 0x2e, 0x64, 0x32,
|
|
|
|
|
+ 0xf0, 0x4d, 0x1c, 0x96, 0x35, 0xe2, 0xba, 0xf9, 0x38, 0x0e, 0x40, 0xa6, 0xd9, 0x64, 0x21, 0x58,
|
|
|
|
|
+ 0x9b, 0xf1, 0x14, 0xcb, 0xbc, 0x4b, 0x66, 0x03, 0x60, 0x2c, 0x37, 0xc9, 0x38, 0x21, 0x98, 0xa5,
|
|
|
|
|
+ 0xaf, 0x9b, 0x0b, 0x0b, 0x72, 0x06, 0x2b, 0x47, 0x4c, 0x4e, 0x16, 0x7c, 0xb2, 0x71, 0x43, 0x2f,
|
|
|
|
|
+ 0xb8, 0x76, 0x6f, 0x5a, 0x15, 0xe4, 0x00, 0x5c, 0xed, 0xca, 0xf4, 0x7b, 0xeb, 0x83, 0x32, 0xe8,
|
|
|
|
|
+ 0x6b, 0x58, 0xcf, 0xd7, 0x42, 0xfe, 0x7d, 0xcb, 0x9b, 0x8f, 0x5d, 0xbb, 0xb7, 0xb2, 0x08, 0x32,
|
|
|
|
|
+ 0x80, 0xfb, 0x73, 0x07, 0x1d, 0xf2, 0x3f, 0x4b, 0xfe, 0xa6, 0x39, 0xca, 0x7d, 0x4f, 0x46, 0xcc,
|
|
|
|
|
+ 0x4e, 0xc8, 0x46, 0x3a, 0xe2, 0xcc, 0x88, 0x99, 0x49, 0xcf, 0x9d, 0xb7, 0x82, 0x19, 0xd2, 0xb4,
|
|
|
|
|
+ 0x67, 0x9f, 0x9c, 0x40, 0xba, 0x33, 0xb2, 0xd9, 0x98, 0xf4, 0x32, 0x91, 0x36, 0x43, 0xc9, 0x2c,
|
|
|
|
|
+ 0x6f, 0x3a, 0x0f, 0xb9, 0xf3, 0xd7, 0xd0, 0x0a, 0x32, 0xe9, 0xe7, 0x87, 0x1c, 0xea, 0xeb, 0x8a,
|
|
|
|
|
+ 0xfa, 0x67, 0xf7, 0xe4, 0x8f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9e, 0x74, 0x65, 0xb9, 0xc6, 0x13,
|
|
|
|
|
+ 0x00, 0x00,
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
@@ -2100,6 +2258,8 @@ type TransformClient interface {
|
|
|
GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error)
|
|
GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error)
|
|
|
//获取erp 渠道细分树
|
|
//获取erp 渠道细分树
|
|
|
GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
|
|
GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
|
|
|
|
|
+ //获取erp 渠道细分树
|
|
|
|
|
+ GetErpMktNetWorkDetail(ctx context.Context, in *ErpMktNetWorkDetailReq, opts ...grpc.CallOption) (*ErpMktNetWorkDetailRes, error)
|
|
|
//获取erp 用户校区权限
|
|
//获取erp 用户校区权限
|
|
|
GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error)
|
|
GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error)
|
|
|
//获取 erp 用户角色
|
|
//获取 erp 用户角色
|
|
@@ -2228,6 +2388,15 @@ func (c *transformClient) GetErpMktNetWorkDetailTree(ctx context.Context, in *Em
|
|
|
return out, nil
|
|
return out, nil
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+func (c *transformClient) GetErpMktNetWorkDetail(ctx context.Context, in *ErpMktNetWorkDetailReq, opts ...grpc.CallOption) (*ErpMktNetWorkDetailRes, error) {
|
|
|
|
|
+ out := new(ErpMktNetWorkDetailRes)
|
|
|
|
|
+ err := c.cc.Invoke(ctx, "/transform.Transform/GetErpMktNetWorkDetail", in, out, opts...)
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ return out, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
func (c *transformClient) GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error) {
|
|
func (c *transformClient) GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error) {
|
|
|
out := new(GetErpOrganSchPerByUserIdRes)
|
|
out := new(GetErpOrganSchPerByUserIdRes)
|
|
|
err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOrganSchPerByUserId", in, out, opts...)
|
|
err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOrganSchPerByUserId", in, out, opts...)
|
|
@@ -2291,6 +2460,8 @@ type TransformServer interface {
|
|
|
GetDataPermission(context.Context, *DataPermissionReq) (*DataPermissionRes, error)
|
|
GetDataPermission(context.Context, *DataPermissionReq) (*DataPermissionRes, error)
|
|
|
//获取erp 渠道细分树
|
|
//获取erp 渠道细分树
|
|
|
GetErpMktNetWorkDetailTree(context.Context, *Empty) (*TreeNodes, error)
|
|
GetErpMktNetWorkDetailTree(context.Context, *Empty) (*TreeNodes, error)
|
|
|
|
|
+ //获取erp 渠道细分树
|
|
|
|
|
+ GetErpMktNetWorkDetail(context.Context, *ErpMktNetWorkDetailReq) (*ErpMktNetWorkDetailRes, error)
|
|
|
//获取erp 用户校区权限
|
|
//获取erp 用户校区权限
|
|
|
GetErpOrganSchPerByUserId(context.Context, *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error)
|
|
GetErpOrganSchPerByUserId(context.Context, *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error)
|
|
|
//获取 erp 用户角色
|
|
//获取 erp 用户角色
|
|
@@ -2343,6 +2514,9 @@ func (*UnimplementedTransformServer) GetDataPermission(ctx context.Context, req
|
|
|
func (*UnimplementedTransformServer) GetErpMktNetWorkDetailTree(ctx context.Context, req *Empty) (*TreeNodes, error) {
|
|
func (*UnimplementedTransformServer) GetErpMktNetWorkDetailTree(ctx context.Context, req *Empty) (*TreeNodes, error) {
|
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetErpMktNetWorkDetailTree not implemented")
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetErpMktNetWorkDetailTree not implemented")
|
|
|
}
|
|
}
|
|
|
|
|
+func (*UnimplementedTransformServer) GetErpMktNetWorkDetail(ctx context.Context, req *ErpMktNetWorkDetailReq) (*ErpMktNetWorkDetailRes, error) {
|
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method GetErpMktNetWorkDetail not implemented")
|
|
|
|
|
+}
|
|
|
func (*UnimplementedTransformServer) GetErpOrganSchPerByUserId(ctx context.Context, req *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error) {
|
|
func (*UnimplementedTransformServer) GetErpOrganSchPerByUserId(ctx context.Context, req *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error) {
|
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetErpOrganSchPerByUserId not implemented")
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetErpOrganSchPerByUserId not implemented")
|
|
|
}
|
|
}
|
|
@@ -2579,6 +2753,24 @@ func _Transform_GetErpMktNetWorkDetailTree_Handler(srv interface{}, ctx context.
|
|
|
return interceptor(ctx, in, info, handler)
|
|
return interceptor(ctx, in, info, handler)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+func _Transform_GetErpMktNetWorkDetail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
|
+ in := new(ErpMktNetWorkDetailReq)
|
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ if interceptor == nil {
|
|
|
|
|
+ return srv.(TransformServer).GetErpMktNetWorkDetail(ctx, in)
|
|
|
|
|
+ }
|
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
|
+ Server: srv,
|
|
|
|
|
+ FullMethod: "/transform.Transform/GetErpMktNetWorkDetail",
|
|
|
|
|
+ }
|
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
|
+ return srv.(TransformServer).GetErpMktNetWorkDetail(ctx, req.(*ErpMktNetWorkDetailReq))
|
|
|
|
|
+ }
|
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
func _Transform_GetErpOrganSchPerByUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
func _Transform_GetErpOrganSchPerByUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
in := new(GetErpOrganSchPerByUserIdReq)
|
|
in := new(GetErpOrganSchPerByUserIdReq)
|
|
|
if err := dec(in); err != nil {
|
|
if err := dec(in); err != nil {
|
|
@@ -2721,6 +2913,10 @@ var _Transform_serviceDesc = grpc.ServiceDesc{
|
|
|
MethodName: "GetErpMktNetWorkDetailTree",
|
|
MethodName: "GetErpMktNetWorkDetailTree",
|
|
|
Handler: _Transform_GetErpMktNetWorkDetailTree_Handler,
|
|
Handler: _Transform_GetErpMktNetWorkDetailTree_Handler,
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ MethodName: "GetErpMktNetWorkDetail",
|
|
|
|
|
+ Handler: _Transform_GetErpMktNetWorkDetail_Handler,
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
MethodName: "GetErpOrganSchPerByUserId",
|
|
MethodName: "GetErpOrganSchPerByUserId",
|
|
|
Handler: _Transform_GetErpOrganSchPerByUserId_Handler,
|
|
Handler: _Transform_GetErpOrganSchPerByUserId_Handler,
|