123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: service_phone.proto
- // package声明符,用来防止不同的消息类型有命名冲突
- package v1
- import (
- fmt "fmt"
- proto "github.com/golang/protobuf/proto"
- math "math"
- )
- // Reference imports to suppress errors if they are not otherwise used.
- var _ = proto.Marshal
- var _ = fmt.Errorf
- var _ = math.Inf
- // This is a compile-time assertion to ensure that this generated file
- // is compatible with the proto package it is being compiled against.
- // A compilation error at this line likely means your copy of the
- // proto package needs to be updated.
- const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
- type ServicePhoneClassListRequest struct {
- Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
- PageSize int64 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
- GardenId int64 `protobuf:"varint,3,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- Enable int32 `protobuf:"varint,4,opt,name=enable,proto3" json:"enable"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ServicePhoneClassListRequest) Reset() { *m = ServicePhoneClassListRequest{} }
- func (m *ServicePhoneClassListRequest) String() string { return proto.CompactTextString(m) }
- func (*ServicePhoneClassListRequest) ProtoMessage() {}
- func (*ServicePhoneClassListRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9acc1da8c47e8c2, []int{0}
- }
- func (m *ServicePhoneClassListRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ServicePhoneClassListRequest.Unmarshal(m, b)
- }
- func (m *ServicePhoneClassListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ServicePhoneClassListRequest.Marshal(b, m, deterministic)
- }
- func (m *ServicePhoneClassListRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ServicePhoneClassListRequest.Merge(m, src)
- }
- func (m *ServicePhoneClassListRequest) XXX_Size() int {
- return xxx_messageInfo_ServicePhoneClassListRequest.Size(m)
- }
- func (m *ServicePhoneClassListRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_ServicePhoneClassListRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_ServicePhoneClassListRequest proto.InternalMessageInfo
- func (m *ServicePhoneClassListRequest) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *ServicePhoneClassListRequest) GetPageSize() int64 {
- if m != nil {
- return m.PageSize
- }
- return 0
- }
- func (m *ServicePhoneClassListRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *ServicePhoneClassListRequest) GetEnable() int32 {
- if m != nil {
- return m.Enable
- }
- return 0
- }
- type ServicePhoneClassItem struct {
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- ClassName string `protobuf:"bytes,2,opt,name=class_name,json=className,proto3" json:"class_name"`
- Enable bool `protobuf:"varint,3,opt,name=enable,proto3" json:"enable"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ServicePhoneClassItem) Reset() { *m = ServicePhoneClassItem{} }
- func (m *ServicePhoneClassItem) String() string { return proto.CompactTextString(m) }
- func (*ServicePhoneClassItem) ProtoMessage() {}
- func (*ServicePhoneClassItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9acc1da8c47e8c2, []int{1}
- }
- func (m *ServicePhoneClassItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ServicePhoneClassItem.Unmarshal(m, b)
- }
- func (m *ServicePhoneClassItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ServicePhoneClassItem.Marshal(b, m, deterministic)
- }
- func (m *ServicePhoneClassItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ServicePhoneClassItem.Merge(m, src)
- }
- func (m *ServicePhoneClassItem) XXX_Size() int {
- return xxx_messageInfo_ServicePhoneClassItem.Size(m)
- }
- func (m *ServicePhoneClassItem) XXX_DiscardUnknown() {
- xxx_messageInfo_ServicePhoneClassItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_ServicePhoneClassItem proto.InternalMessageInfo
- func (m *ServicePhoneClassItem) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *ServicePhoneClassItem) GetClassName() string {
- if m != nil {
- return m.ClassName
- }
- return ""
- }
- func (m *ServicePhoneClassItem) GetEnable() bool {
- if m != nil {
- return m.Enable
- }
- return false
- }
- type ServicePhoneClassListReply struct {
- Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
- Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
- List []*ServicePhoneClassItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ServicePhoneClassListReply) Reset() { *m = ServicePhoneClassListReply{} }
- func (m *ServicePhoneClassListReply) String() string { return proto.CompactTextString(m) }
- func (*ServicePhoneClassListReply) ProtoMessage() {}
- func (*ServicePhoneClassListReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9acc1da8c47e8c2, []int{2}
- }
- func (m *ServicePhoneClassListReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ServicePhoneClassListReply.Unmarshal(m, b)
- }
- func (m *ServicePhoneClassListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ServicePhoneClassListReply.Marshal(b, m, deterministic)
- }
- func (m *ServicePhoneClassListReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ServicePhoneClassListReply.Merge(m, src)
- }
- func (m *ServicePhoneClassListReply) XXX_Size() int {
- return xxx_messageInfo_ServicePhoneClassListReply.Size(m)
- }
- func (m *ServicePhoneClassListReply) XXX_DiscardUnknown() {
- xxx_messageInfo_ServicePhoneClassListReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_ServicePhoneClassListReply proto.InternalMessageInfo
- func (m *ServicePhoneClassListReply) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *ServicePhoneClassListReply) GetTotal() int64 {
- if m != nil {
- return m.Total
- }
- return 0
- }
- func (m *ServicePhoneClassListReply) GetList() []*ServicePhoneClassItem {
- if m != nil {
- return m.List
- }
- return nil
- }
- type ServicePhoneListRequest struct {
- Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
- PageSize int64 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
- GardenId int64 `protobuf:"varint,3,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- Enable int32 `protobuf:"varint,4,opt,name=enable,proto3" json:"enable"`
- ClassName string `protobuf:"bytes,5,opt,name=class_name,json=className,proto3" json:"class_name"`
- ClassId int64 `protobuf:"varint,6,opt,name=class_id,json=classId,proto3" json:"class_id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ServicePhoneListRequest) Reset() { *m = ServicePhoneListRequest{} }
- func (m *ServicePhoneListRequest) String() string { return proto.CompactTextString(m) }
- func (*ServicePhoneListRequest) ProtoMessage() {}
- func (*ServicePhoneListRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9acc1da8c47e8c2, []int{3}
- }
- func (m *ServicePhoneListRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ServicePhoneListRequest.Unmarshal(m, b)
- }
- func (m *ServicePhoneListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ServicePhoneListRequest.Marshal(b, m, deterministic)
- }
- func (m *ServicePhoneListRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ServicePhoneListRequest.Merge(m, src)
- }
- func (m *ServicePhoneListRequest) XXX_Size() int {
- return xxx_messageInfo_ServicePhoneListRequest.Size(m)
- }
- func (m *ServicePhoneListRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_ServicePhoneListRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_ServicePhoneListRequest proto.InternalMessageInfo
- func (m *ServicePhoneListRequest) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *ServicePhoneListRequest) GetPageSize() int64 {
- if m != nil {
- return m.PageSize
- }
- return 0
- }
- func (m *ServicePhoneListRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *ServicePhoneListRequest) GetEnable() int32 {
- if m != nil {
- return m.Enable
- }
- return 0
- }
- func (m *ServicePhoneListRequest) GetClassName() string {
- if m != nil {
- return m.ClassName
- }
- return ""
- }
- func (m *ServicePhoneListRequest) GetClassId() int64 {
- if m != nil {
- return m.ClassId
- }
- return 0
- }
- type ServicePhoneItem struct {
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- ClassId int64 `protobuf:"varint,2,opt,name=class_id,json=classId,proto3" json:"class_id"`
- Enable bool `protobuf:"varint,3,opt,name=enable,proto3" json:"enable"`
- Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"`
- Phone string `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone"`
- ClassName string `protobuf:"bytes,6,opt,name=class_name,json=className,proto3" json:"class_name"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ServicePhoneItem) Reset() { *m = ServicePhoneItem{} }
- func (m *ServicePhoneItem) String() string { return proto.CompactTextString(m) }
- func (*ServicePhoneItem) ProtoMessage() {}
- func (*ServicePhoneItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9acc1da8c47e8c2, []int{4}
- }
- func (m *ServicePhoneItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ServicePhoneItem.Unmarshal(m, b)
- }
- func (m *ServicePhoneItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ServicePhoneItem.Marshal(b, m, deterministic)
- }
- func (m *ServicePhoneItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ServicePhoneItem.Merge(m, src)
- }
- func (m *ServicePhoneItem) XXX_Size() int {
- return xxx_messageInfo_ServicePhoneItem.Size(m)
- }
- func (m *ServicePhoneItem) XXX_DiscardUnknown() {
- xxx_messageInfo_ServicePhoneItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_ServicePhoneItem proto.InternalMessageInfo
- func (m *ServicePhoneItem) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *ServicePhoneItem) GetClassId() int64 {
- if m != nil {
- return m.ClassId
- }
- return 0
- }
- func (m *ServicePhoneItem) GetEnable() bool {
- if m != nil {
- return m.Enable
- }
- return false
- }
- func (m *ServicePhoneItem) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *ServicePhoneItem) GetPhone() string {
- if m != nil {
- return m.Phone
- }
- return ""
- }
- func (m *ServicePhoneItem) GetClassName() string {
- if m != nil {
- return m.ClassName
- }
- return ""
- }
- type ServicePhoneListReply struct {
- Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
- Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
- List []*ServicePhoneItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ServicePhoneListReply) Reset() { *m = ServicePhoneListReply{} }
- func (m *ServicePhoneListReply) String() string { return proto.CompactTextString(m) }
- func (*ServicePhoneListReply) ProtoMessage() {}
- func (*ServicePhoneListReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_c9acc1da8c47e8c2, []int{5}
- }
- func (m *ServicePhoneListReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ServicePhoneListReply.Unmarshal(m, b)
- }
- func (m *ServicePhoneListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ServicePhoneListReply.Marshal(b, m, deterministic)
- }
- func (m *ServicePhoneListReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ServicePhoneListReply.Merge(m, src)
- }
- func (m *ServicePhoneListReply) XXX_Size() int {
- return xxx_messageInfo_ServicePhoneListReply.Size(m)
- }
- func (m *ServicePhoneListReply) XXX_DiscardUnknown() {
- xxx_messageInfo_ServicePhoneListReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_ServicePhoneListReply proto.InternalMessageInfo
- func (m *ServicePhoneListReply) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *ServicePhoneListReply) GetTotal() int64 {
- if m != nil {
- return m.Total
- }
- return 0
- }
- func (m *ServicePhoneListReply) GetList() []*ServicePhoneItem {
- if m != nil {
- return m.List
- }
- return nil
- }
- func init() {
- proto.RegisterType((*ServicePhoneClassListRequest)(nil), "pb_v1.ServicePhoneClassListRequest")
- proto.RegisterType((*ServicePhoneClassItem)(nil), "pb_v1.ServicePhoneClassItem")
- proto.RegisterType((*ServicePhoneClassListReply)(nil), "pb_v1.ServicePhoneClassListReply")
- proto.RegisterType((*ServicePhoneListRequest)(nil), "pb_v1.ServicePhoneListRequest")
- proto.RegisterType((*ServicePhoneItem)(nil), "pb_v1.ServicePhoneItem")
- proto.RegisterType((*ServicePhoneListReply)(nil), "pb_v1.ServicePhoneListReply")
- }
- func init() {
- proto.RegisterFile("service_phone.proto", fileDescriptor_c9acc1da8c47e8c2)
- }
- var fileDescriptor_c9acc1da8c47e8c2 = []byte{
- // 374 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x53, 0xcd, 0x4e, 0xe3, 0x30,
- 0x10, 0x56, 0x7e, 0xb7, 0x9d, 0x95, 0x56, 0x2b, 0xef, 0x4f, 0xb3, 0x4b, 0x91, 0xa2, 0x9c, 0x2a,
- 0xa1, 0xb6, 0x14, 0xde, 0x00, 0x4e, 0x95, 0x10, 0x42, 0xe9, 0x8d, 0x03, 0x91, 0x53, 0x8f, 0x5a,
- 0x4b, 0x69, 0x62, 0x62, 0xb7, 0xd0, 0x9e, 0x79, 0x0e, 0xde, 0x83, 0xb7, 0x43, 0x71, 0x22, 0x48,
- 0x43, 0x7a, 0xe1, 0xc0, 0x29, 0x9e, 0xf9, 0xe2, 0x99, 0x6f, 0xbe, 0x6f, 0x0c, 0xbf, 0x24, 0xe6,
- 0x1b, 0x3e, 0xc7, 0x48, 0x2c, 0xb3, 0x14, 0x47, 0x22, 0xcf, 0x54, 0x46, 0x1c, 0x11, 0x47, 0x9b,
- 0x49, 0xf0, 0x64, 0x40, 0x7f, 0x56, 0xc2, 0x37, 0x05, 0x7a, 0x99, 0x50, 0x29, 0xaf, 0xb8, 0x54,
- 0x21, 0xde, 0xaf, 0x51, 0x2a, 0x42, 0xc0, 0x16, 0x74, 0x81, 0x9e, 0xe1, 0x1b, 0x03, 0x2b, 0xd4,
- 0x67, 0x72, 0x04, 0xdd, 0xe2, 0x1b, 0x49, 0xbe, 0x43, 0xcf, 0xd4, 0x40, 0xa7, 0x48, 0xcc, 0xf8,
- 0x4e, 0x83, 0x0b, 0x9a, 0x33, 0x4c, 0x23, 0xce, 0x3c, 0xab, 0x04, 0xcb, 0xc4, 0x94, 0x91, 0xbf,
- 0xe0, 0x62, 0x4a, 0xe3, 0x04, 0x3d, 0xdb, 0x37, 0x06, 0x4e, 0x58, 0x45, 0xc1, 0x1d, 0xfc, 0xf9,
- 0xc0, 0x62, 0xaa, 0x70, 0x45, 0x7e, 0x80, 0xc9, 0x59, 0xd5, 0xdc, 0xe4, 0x8c, 0x1c, 0x03, 0xcc,
- 0x0b, 0x30, 0x4a, 0xe9, 0xaa, 0xec, 0xdd, 0x0d, 0xbb, 0x3a, 0x73, 0x4d, 0x57, 0x58, 0xab, 0x5f,
- 0x74, 0xee, 0xbc, 0xd5, 0x7f, 0x84, 0xff, 0x07, 0xa6, 0x14, 0xc9, 0xb6, 0x75, 0xc6, 0xdf, 0xe0,
- 0xa8, 0x4c, 0xd1, 0xa4, 0x9a, 0xaf, 0x0c, 0xc8, 0x29, 0xd8, 0x09, 0x97, 0xca, 0xb3, 0x7c, 0x6b,
- 0xf0, 0xfd, 0xac, 0x3f, 0xd2, 0x22, 0x8e, 0x5a, 0xa9, 0x87, 0xfa, 0xcf, 0xe0, 0xc5, 0x80, 0x5e,
- 0x1d, 0xff, 0x72, 0x6d, 0x1b, 0x92, 0x39, 0x4d, 0xc9, 0xfe, 0x41, 0xa7, 0x84, 0x39, 0xf3, 0x5c,
- 0x5d, 0xf2, 0x9b, 0x8e, 0xa7, 0x2c, 0x78, 0x36, 0xe0, 0x67, 0x9d, 0x7b, 0xab, 0x23, 0xf5, 0xfb,
- 0xe6, 0xde, 0xfd, 0x43, 0x6e, 0x14, 0x73, 0x6b, 0x2e, 0xb6, 0xe6, 0xa2, 0xcf, 0x85, 0xde, 0x7a,
- 0x3d, 0x2b, 0x82, 0x65, 0xd0, 0xe0, 0xee, 0x36, 0xb8, 0x07, 0xe9, 0xfe, 0xda, 0x7c, 0xc6, 0xd1,
- 0x93, 0x3d, 0x47, 0x7b, 0x2d, 0x8e, 0xbe, 0x9b, 0x79, 0x11, 0xdc, 0xfa, 0x22, 0xcf, 0x04, 0xe6,
- 0x6a, 0x3b, 0x5c, 0x66, 0x6b, 0x89, 0xcb, 0x2c, 0x61, 0xc3, 0x05, 0x55, 0xf8, 0x40, 0xb7, 0x63,
- 0x11, 0x8f, 0x37, 0x93, 0xd8, 0xd5, 0xef, 0xeb, 0xfc, 0x35, 0x00, 0x00, 0xff, 0xff, 0x80, 0xf5,
- 0xa4, 0xb4, 0x76, 0x03, 0x00, 0x00,
- }
|