// Code generated by protoc-gen-go. DO NOT EDIT. // source: event.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 EventAddRequest struct { GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"` // 标题 Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"` // 内容 Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content"` // 活动开始时间 Start int64 `protobuf:"varint,4,opt,name=start,proto3" json:"start"` // 活动结束时间 End int64 `protobuf:"varint,5,opt,name=end,proto3" json:"end"` // 报名截止时间 SignUpEnd int64 `protobuf:"varint,6,opt,name=sign_up_end,json=signUpEnd,proto3" json:"sign_up_end"` // 人数限制 PeopleLimit int64 `protobuf:"varint,7,opt,name=people_limit,json=peopleLimit,proto3" json:"people_limit"` // 报名费用 Fee int64 `protobuf:"varint,8,opt,name=fee,proto3" json:"fee"` // 活动地址 Addr string `protobuf:"bytes,9,opt,name=addr,proto3" json:"addr"` // 图片 Pic []string `protobuf:"bytes,10,rep,name=pic,proto3" json:"pic"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventAddRequest) Reset() { *m = EventAddRequest{} } func (m *EventAddRequest) String() string { return proto.CompactTextString(m) } func (*EventAddRequest) ProtoMessage() {} func (*EventAddRequest) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{0} } func (m *EventAddRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventAddRequest.Unmarshal(m, b) } func (m *EventAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventAddRequest.Marshal(b, m, deterministic) } func (m *EventAddRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_EventAddRequest.Merge(m, src) } func (m *EventAddRequest) XXX_Size() int { return xxx_messageInfo_EventAddRequest.Size(m) } func (m *EventAddRequest) XXX_DiscardUnknown() { xxx_messageInfo_EventAddRequest.DiscardUnknown(m) } var xxx_messageInfo_EventAddRequest proto.InternalMessageInfo func (m *EventAddRequest) GetGardenId() int64 { if m != nil { return m.GardenId } return 0 } func (m *EventAddRequest) GetTitle() string { if m != nil { return m.Title } return "" } func (m *EventAddRequest) GetContent() string { if m != nil { return m.Content } return "" } func (m *EventAddRequest) GetStart() int64 { if m != nil { return m.Start } return 0 } func (m *EventAddRequest) GetEnd() int64 { if m != nil { return m.End } return 0 } func (m *EventAddRequest) GetSignUpEnd() int64 { if m != nil { return m.SignUpEnd } return 0 } func (m *EventAddRequest) GetPeopleLimit() int64 { if m != nil { return m.PeopleLimit } return 0 } func (m *EventAddRequest) GetFee() int64 { if m != nil { return m.Fee } return 0 } func (m *EventAddRequest) GetAddr() string { if m != nil { return m.Addr } return "" } func (m *EventAddRequest) GetPic() []string { if m != nil { return m.Pic } return nil } type EventAddReply struct { Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventAddReply) Reset() { *m = EventAddReply{} } func (m *EventAddReply) String() string { return proto.CompactTextString(m) } func (*EventAddReply) ProtoMessage() {} func (*EventAddReply) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{1} } func (m *EventAddReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventAddReply.Unmarshal(m, b) } func (m *EventAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventAddReply.Marshal(b, m, deterministic) } func (m *EventAddReply) XXX_Merge(src proto.Message) { xxx_messageInfo_EventAddReply.Merge(m, src) } func (m *EventAddReply) XXX_Size() int { return xxx_messageInfo_EventAddReply.Size(m) } func (m *EventAddReply) XXX_DiscardUnknown() { xxx_messageInfo_EventAddReply.DiscardUnknown(m) } var xxx_messageInfo_EventAddReply proto.InternalMessageInfo func (m *EventAddReply) GetId() int64 { if m != nil { return m.Id } return 0 } type EventUpdateRequest struct { GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"` // 标题 Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"` // 内容 Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content"` // 活动开始时间 Start int64 `protobuf:"varint,4,opt,name=start,proto3" json:"start"` // 活动结束时间 End int64 `protobuf:"varint,5,opt,name=end,proto3" json:"end"` // 报名截止时间 SignUpEnd int64 `protobuf:"varint,6,opt,name=sign_up_end,json=signUpEnd,proto3" json:"sign_up_end"` // 人数限制 PeopleLimit int64 `protobuf:"varint,7,opt,name=people_limit,json=peopleLimit,proto3" json:"people_limit"` // 报名费用 Fee int64 `protobuf:"varint,8,opt,name=fee,proto3" json:"fee"` // 活动地址 Addr string `protobuf:"bytes,9,opt,name=addr,proto3" json:"addr"` // 图片 Pic []string `protobuf:"bytes,10,rep,name=pic,proto3" json:"pic"` Id int64 `protobuf:"varint,11,opt,name=id,proto3" json:"id"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventUpdateRequest) Reset() { *m = EventUpdateRequest{} } func (m *EventUpdateRequest) String() string { return proto.CompactTextString(m) } func (*EventUpdateRequest) ProtoMessage() {} func (*EventUpdateRequest) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{2} } func (m *EventUpdateRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventUpdateRequest.Unmarshal(m, b) } func (m *EventUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventUpdateRequest.Marshal(b, m, deterministic) } func (m *EventUpdateRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_EventUpdateRequest.Merge(m, src) } func (m *EventUpdateRequest) XXX_Size() int { return xxx_messageInfo_EventUpdateRequest.Size(m) } func (m *EventUpdateRequest) XXX_DiscardUnknown() { xxx_messageInfo_EventUpdateRequest.DiscardUnknown(m) } var xxx_messageInfo_EventUpdateRequest proto.InternalMessageInfo func (m *EventUpdateRequest) GetGardenId() int64 { if m != nil { return m.GardenId } return 0 } func (m *EventUpdateRequest) GetTitle() string { if m != nil { return m.Title } return "" } func (m *EventUpdateRequest) GetContent() string { if m != nil { return m.Content } return "" } func (m *EventUpdateRequest) GetStart() int64 { if m != nil { return m.Start } return 0 } func (m *EventUpdateRequest) GetEnd() int64 { if m != nil { return m.End } return 0 } func (m *EventUpdateRequest) GetSignUpEnd() int64 { if m != nil { return m.SignUpEnd } return 0 } func (m *EventUpdateRequest) GetPeopleLimit() int64 { if m != nil { return m.PeopleLimit } return 0 } func (m *EventUpdateRequest) GetFee() int64 { if m != nil { return m.Fee } return 0 } func (m *EventUpdateRequest) GetAddr() string { if m != nil { return m.Addr } return "" } func (m *EventUpdateRequest) GetPic() []string { if m != nil { return m.Pic } return nil } func (m *EventUpdateRequest) GetId() int64 { if m != nil { return m.Id } return 0 } type EventUpdateReply struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventUpdateReply) Reset() { *m = EventUpdateReply{} } func (m *EventUpdateReply) String() string { return proto.CompactTextString(m) } func (*EventUpdateReply) ProtoMessage() {} func (*EventUpdateReply) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{3} } func (m *EventUpdateReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventUpdateReply.Unmarshal(m, b) } func (m *EventUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventUpdateReply.Marshal(b, m, deterministic) } func (m *EventUpdateReply) XXX_Merge(src proto.Message) { xxx_messageInfo_EventUpdateReply.Merge(m, src) } func (m *EventUpdateReply) XXX_Size() int { return xxx_messageInfo_EventUpdateReply.Size(m) } func (m *EventUpdateReply) XXX_DiscardUnknown() { xxx_messageInfo_EventUpdateReply.DiscardUnknown(m) } var xxx_messageInfo_EventUpdateReply proto.InternalMessageInfo type EventDelRequest struct { GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"` Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventDelRequest) Reset() { *m = EventDelRequest{} } func (m *EventDelRequest) String() string { return proto.CompactTextString(m) } func (*EventDelRequest) ProtoMessage() {} func (*EventDelRequest) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{4} } func (m *EventDelRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventDelRequest.Unmarshal(m, b) } func (m *EventDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventDelRequest.Marshal(b, m, deterministic) } func (m *EventDelRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_EventDelRequest.Merge(m, src) } func (m *EventDelRequest) XXX_Size() int { return xxx_messageInfo_EventDelRequest.Size(m) } func (m *EventDelRequest) XXX_DiscardUnknown() { xxx_messageInfo_EventDelRequest.DiscardUnknown(m) } var xxx_messageInfo_EventDelRequest proto.InternalMessageInfo func (m *EventDelRequest) GetGardenId() int64 { if m != nil { return m.GardenId } return 0 } func (m *EventDelRequest) GetId() int64 { if m != nil { return m.Id } return 0 } type EventDelReply struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventDelReply) Reset() { *m = EventDelReply{} } func (m *EventDelReply) String() string { return proto.CompactTextString(m) } func (*EventDelReply) ProtoMessage() {} func (*EventDelReply) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{5} } func (m *EventDelReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventDelReply.Unmarshal(m, b) } func (m *EventDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventDelReply.Marshal(b, m, deterministic) } func (m *EventDelReply) XXX_Merge(src proto.Message) { xxx_messageInfo_EventDelReply.Merge(m, src) } func (m *EventDelReply) XXX_Size() int { return xxx_messageInfo_EventDelReply.Size(m) } func (m *EventDelReply) XXX_DiscardUnknown() { xxx_messageInfo_EventDelReply.DiscardUnknown(m) } var xxx_messageInfo_EventDelReply proto.InternalMessageInfo type EventListRequest struct { GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"` Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"` PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size"` HouseholdUid int64 `protobuf:"varint,5,opt,name=household_uid,json=householdUid,proto3" json:"household_uid"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventListRequest) Reset() { *m = EventListRequest{} } func (m *EventListRequest) String() string { return proto.CompactTextString(m) } func (*EventListRequest) ProtoMessage() {} func (*EventListRequest) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{6} } func (m *EventListRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventListRequest.Unmarshal(m, b) } func (m *EventListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventListRequest.Marshal(b, m, deterministic) } func (m *EventListRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_EventListRequest.Merge(m, src) } func (m *EventListRequest) XXX_Size() int { return xxx_messageInfo_EventListRequest.Size(m) } func (m *EventListRequest) XXX_DiscardUnknown() { xxx_messageInfo_EventListRequest.DiscardUnknown(m) } var xxx_messageInfo_EventListRequest proto.InternalMessageInfo func (m *EventListRequest) GetGardenId() int64 { if m != nil { return m.GardenId } return 0 } func (m *EventListRequest) GetPage() int64 { if m != nil { return m.Page } return 0 } func (m *EventListRequest) GetPageSize() int64 { if m != nil { return m.PageSize } return 0 } func (m *EventListRequest) GetHouseholdUid() int64 { if m != nil { return m.HouseholdUid } return 0 } type EventItem struct { Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 标题 Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"` // 内容 Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content"` // 活动开始时间 Start int64 `protobuf:"varint,4,opt,name=start,proto3" json:"start"` // 活动结束时间 End int64 `protobuf:"varint,5,opt,name=end,proto3" json:"end"` // 报名截止时间 SignUpEnd int64 `protobuf:"varint,6,opt,name=sign_up_end,json=signUpEnd,proto3" json:"sign_up_end"` // 人数限制 PeopleLimit int64 `protobuf:"varint,7,opt,name=people_limit,json=peopleLimit,proto3" json:"people_limit"` // 报名费用 Fee int64 `protobuf:"varint,8,opt,name=fee,proto3" json:"fee"` // 活动地址 Addr string `protobuf:"bytes,9,opt,name=addr,proto3" json:"addr"` // 已报名人数 PeopleCount int64 `protobuf:"varint,10,opt,name=people_count,json=peopleCount,proto3" json:"people_count"` // 1 报名进行中 2 报名已截止 Status int32 `protobuf:"varint,11,opt,name=status,proto3" json:"status"` CreatedAt string `protobuf:"bytes,12,opt,name=created_at,json=createdAt,proto3" json:"created_at"` // 图片 Pic []string `protobuf:"bytes,13,rep,name=pic,proto3" json:"pic"` // 物业端不管该字段,小程序查询时该字段有效 是否报名 Sign bool `protobuf:"varint,14,opt,name=sign,proto3" json:"sign"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventItem) Reset() { *m = EventItem{} } func (m *EventItem) String() string { return proto.CompactTextString(m) } func (*EventItem) ProtoMessage() {} func (*EventItem) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{7} } func (m *EventItem) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventItem.Unmarshal(m, b) } func (m *EventItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventItem.Marshal(b, m, deterministic) } func (m *EventItem) XXX_Merge(src proto.Message) { xxx_messageInfo_EventItem.Merge(m, src) } func (m *EventItem) XXX_Size() int { return xxx_messageInfo_EventItem.Size(m) } func (m *EventItem) XXX_DiscardUnknown() { xxx_messageInfo_EventItem.DiscardUnknown(m) } var xxx_messageInfo_EventItem proto.InternalMessageInfo func (m *EventItem) GetId() int64 { if m != nil { return m.Id } return 0 } func (m *EventItem) GetTitle() string { if m != nil { return m.Title } return "" } func (m *EventItem) GetContent() string { if m != nil { return m.Content } return "" } func (m *EventItem) GetStart() int64 { if m != nil { return m.Start } return 0 } func (m *EventItem) GetEnd() int64 { if m != nil { return m.End } return 0 } func (m *EventItem) GetSignUpEnd() int64 { if m != nil { return m.SignUpEnd } return 0 } func (m *EventItem) GetPeopleLimit() int64 { if m != nil { return m.PeopleLimit } return 0 } func (m *EventItem) GetFee() int64 { if m != nil { return m.Fee } return 0 } func (m *EventItem) GetAddr() string { if m != nil { return m.Addr } return "" } func (m *EventItem) GetPeopleCount() int64 { if m != nil { return m.PeopleCount } return 0 } func (m *EventItem) GetStatus() int32 { if m != nil { return m.Status } return 0 } func (m *EventItem) GetCreatedAt() string { if m != nil { return m.CreatedAt } return "" } func (m *EventItem) GetPic() []string { if m != nil { return m.Pic } return nil } func (m *EventItem) GetSign() bool { if m != nil { return m.Sign } return false } type EventListReply struct { Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"` Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"` List []*EventItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventListReply) Reset() { *m = EventListReply{} } func (m *EventListReply) String() string { return proto.CompactTextString(m) } func (*EventListReply) ProtoMessage() {} func (*EventListReply) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{8} } func (m *EventListReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventListReply.Unmarshal(m, b) } func (m *EventListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventListReply.Marshal(b, m, deterministic) } func (m *EventListReply) XXX_Merge(src proto.Message) { xxx_messageInfo_EventListReply.Merge(m, src) } func (m *EventListReply) XXX_Size() int { return xxx_messageInfo_EventListReply.Size(m) } func (m *EventListReply) XXX_DiscardUnknown() { xxx_messageInfo_EventListReply.DiscardUnknown(m) } var xxx_messageInfo_EventListReply proto.InternalMessageInfo func (m *EventListReply) GetPage() int64 { if m != nil { return m.Page } return 0 } func (m *EventListReply) GetTotal() int64 { if m != nil { return m.Total } return 0 } func (m *EventListReply) GetList() []*EventItem { if m != nil { return m.List } return nil } type EventSignAddRequest struct { GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"` EventId int64 `protobuf:"varint,2,opt,name=event_id,json=eventId,proto3" json:"event_id"` Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone"` Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"` Count int64 `protobuf:"varint,5,opt,name=count,proto3" json:"count"` Comment string `protobuf:"bytes,6,opt,name=comment,proto3" json:"comment"` HouseholdUid int64 `protobuf:"varint,7,opt,name=household_uid,json=householdUid,proto3" json:"household_uid"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventSignAddRequest) Reset() { *m = EventSignAddRequest{} } func (m *EventSignAddRequest) String() string { return proto.CompactTextString(m) } func (*EventSignAddRequest) ProtoMessage() {} func (*EventSignAddRequest) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{9} } func (m *EventSignAddRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventSignAddRequest.Unmarshal(m, b) } func (m *EventSignAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventSignAddRequest.Marshal(b, m, deterministic) } func (m *EventSignAddRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_EventSignAddRequest.Merge(m, src) } func (m *EventSignAddRequest) XXX_Size() int { return xxx_messageInfo_EventSignAddRequest.Size(m) } func (m *EventSignAddRequest) XXX_DiscardUnknown() { xxx_messageInfo_EventSignAddRequest.DiscardUnknown(m) } var xxx_messageInfo_EventSignAddRequest proto.InternalMessageInfo func (m *EventSignAddRequest) GetGardenId() int64 { if m != nil { return m.GardenId } return 0 } func (m *EventSignAddRequest) GetEventId() int64 { if m != nil { return m.EventId } return 0 } func (m *EventSignAddRequest) GetPhone() string { if m != nil { return m.Phone } return "" } func (m *EventSignAddRequest) GetName() string { if m != nil { return m.Name } return "" } func (m *EventSignAddRequest) GetCount() int64 { if m != nil { return m.Count } return 0 } func (m *EventSignAddRequest) GetComment() string { if m != nil { return m.Comment } return "" } func (m *EventSignAddRequest) GetHouseholdUid() int64 { if m != nil { return m.HouseholdUid } return 0 } type EventSignAddReply struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventSignAddReply) Reset() { *m = EventSignAddReply{} } func (m *EventSignAddReply) String() string { return proto.CompactTextString(m) } func (*EventSignAddReply) ProtoMessage() {} func (*EventSignAddReply) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{10} } func (m *EventSignAddReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventSignAddReply.Unmarshal(m, b) } func (m *EventSignAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventSignAddReply.Marshal(b, m, deterministic) } func (m *EventSignAddReply) XXX_Merge(src proto.Message) { xxx_messageInfo_EventSignAddReply.Merge(m, src) } func (m *EventSignAddReply) XXX_Size() int { return xxx_messageInfo_EventSignAddReply.Size(m) } func (m *EventSignAddReply) XXX_DiscardUnknown() { xxx_messageInfo_EventSignAddReply.DiscardUnknown(m) } var xxx_messageInfo_EventSignAddReply proto.InternalMessageInfo type EventSignDelRequest struct { GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"` Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventSignDelRequest) Reset() { *m = EventSignDelRequest{} } func (m *EventSignDelRequest) String() string { return proto.CompactTextString(m) } func (*EventSignDelRequest) ProtoMessage() {} func (*EventSignDelRequest) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{11} } func (m *EventSignDelRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventSignDelRequest.Unmarshal(m, b) } func (m *EventSignDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventSignDelRequest.Marshal(b, m, deterministic) } func (m *EventSignDelRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_EventSignDelRequest.Merge(m, src) } func (m *EventSignDelRequest) XXX_Size() int { return xxx_messageInfo_EventSignDelRequest.Size(m) } func (m *EventSignDelRequest) XXX_DiscardUnknown() { xxx_messageInfo_EventSignDelRequest.DiscardUnknown(m) } var xxx_messageInfo_EventSignDelRequest proto.InternalMessageInfo func (m *EventSignDelRequest) GetGardenId() int64 { if m != nil { return m.GardenId } return 0 } func (m *EventSignDelRequest) GetId() int64 { if m != nil { return m.Id } return 0 } type EventSignDelReply struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventSignDelReply) Reset() { *m = EventSignDelReply{} } func (m *EventSignDelReply) String() string { return proto.CompactTextString(m) } func (*EventSignDelReply) ProtoMessage() {} func (*EventSignDelReply) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{12} } func (m *EventSignDelReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventSignDelReply.Unmarshal(m, b) } func (m *EventSignDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventSignDelReply.Marshal(b, m, deterministic) } func (m *EventSignDelReply) XXX_Merge(src proto.Message) { xxx_messageInfo_EventSignDelReply.Merge(m, src) } func (m *EventSignDelReply) XXX_Size() int { return xxx_messageInfo_EventSignDelReply.Size(m) } func (m *EventSignDelReply) XXX_DiscardUnknown() { xxx_messageInfo_EventSignDelReply.DiscardUnknown(m) } var xxx_messageInfo_EventSignDelReply proto.InternalMessageInfo type EventSignListRequest struct { GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"` EventId int64 `protobuf:"varint,2,opt,name=event_id,json=eventId,proto3" json:"event_id"` Page int64 `protobuf:"varint,3,opt,name=page,proto3" json:"page"` PageSize int64 `protobuf:"varint,4,opt,name=page_size,json=pageSize,proto3" json:"page_size"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventSignListRequest) Reset() { *m = EventSignListRequest{} } func (m *EventSignListRequest) String() string { return proto.CompactTextString(m) } func (*EventSignListRequest) ProtoMessage() {} func (*EventSignListRequest) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{13} } func (m *EventSignListRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventSignListRequest.Unmarshal(m, b) } func (m *EventSignListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventSignListRequest.Marshal(b, m, deterministic) } func (m *EventSignListRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_EventSignListRequest.Merge(m, src) } func (m *EventSignListRequest) XXX_Size() int { return xxx_messageInfo_EventSignListRequest.Size(m) } func (m *EventSignListRequest) XXX_DiscardUnknown() { xxx_messageInfo_EventSignListRequest.DiscardUnknown(m) } var xxx_messageInfo_EventSignListRequest proto.InternalMessageInfo func (m *EventSignListRequest) GetGardenId() int64 { if m != nil { return m.GardenId } return 0 } func (m *EventSignListRequest) GetEventId() int64 { if m != nil { return m.EventId } return 0 } func (m *EventSignListRequest) GetPage() int64 { if m != nil { return m.Page } return 0 } func (m *EventSignListRequest) GetPageSize() int64 { if m != nil { return m.PageSize } return 0 } type EventSignItem struct { Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` EventId int64 `protobuf:"varint,2,opt,name=event_id,json=eventId,proto3" json:"event_id"` Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone"` Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"` // 人数 Count int64 `protobuf:"varint,5,opt,name=count,proto3" json:"count"` Comment string `protobuf:"bytes,6,opt,name=comment,proto3" json:"comment"` SignTime string `protobuf:"bytes,7,opt,name=sign_time,json=signTime,proto3" json:"sign_time"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventSignItem) Reset() { *m = EventSignItem{} } func (m *EventSignItem) String() string { return proto.CompactTextString(m) } func (*EventSignItem) ProtoMessage() {} func (*EventSignItem) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{14} } func (m *EventSignItem) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventSignItem.Unmarshal(m, b) } func (m *EventSignItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventSignItem.Marshal(b, m, deterministic) } func (m *EventSignItem) XXX_Merge(src proto.Message) { xxx_messageInfo_EventSignItem.Merge(m, src) } func (m *EventSignItem) XXX_Size() int { return xxx_messageInfo_EventSignItem.Size(m) } func (m *EventSignItem) XXX_DiscardUnknown() { xxx_messageInfo_EventSignItem.DiscardUnknown(m) } var xxx_messageInfo_EventSignItem proto.InternalMessageInfo func (m *EventSignItem) GetId() int64 { if m != nil { return m.Id } return 0 } func (m *EventSignItem) GetEventId() int64 { if m != nil { return m.EventId } return 0 } func (m *EventSignItem) GetPhone() string { if m != nil { return m.Phone } return "" } func (m *EventSignItem) GetName() string { if m != nil { return m.Name } return "" } func (m *EventSignItem) GetCount() int64 { if m != nil { return m.Count } return 0 } func (m *EventSignItem) GetComment() string { if m != nil { return m.Comment } return "" } func (m *EventSignItem) GetSignTime() string { if m != nil { return m.SignTime } return "" } type EventSignListReply struct { Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"` Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"` List []*EventSignItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *EventSignListReply) Reset() { *m = EventSignListReply{} } func (m *EventSignListReply) String() string { return proto.CompactTextString(m) } func (*EventSignListReply) ProtoMessage() {} func (*EventSignListReply) Descriptor() ([]byte, []int) { return fileDescriptor_2d17a9d3f0ddf27e, []int{15} } func (m *EventSignListReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EventSignListReply.Unmarshal(m, b) } func (m *EventSignListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_EventSignListReply.Marshal(b, m, deterministic) } func (m *EventSignListReply) XXX_Merge(src proto.Message) { xxx_messageInfo_EventSignListReply.Merge(m, src) } func (m *EventSignListReply) XXX_Size() int { return xxx_messageInfo_EventSignListReply.Size(m) } func (m *EventSignListReply) XXX_DiscardUnknown() { xxx_messageInfo_EventSignListReply.DiscardUnknown(m) } var xxx_messageInfo_EventSignListReply proto.InternalMessageInfo func (m *EventSignListReply) GetPage() int64 { if m != nil { return m.Page } return 0 } func (m *EventSignListReply) GetTotal() int64 { if m != nil { return m.Total } return 0 } func (m *EventSignListReply) GetList() []*EventSignItem { if m != nil { return m.List } return nil } func init() { proto.RegisterType((*EventAddRequest)(nil), "pb_v1.EventAddRequest") proto.RegisterType((*EventAddReply)(nil), "pb_v1.EventAddReply") proto.RegisterType((*EventUpdateRequest)(nil), "pb_v1.EventUpdateRequest") proto.RegisterType((*EventUpdateReply)(nil), "pb_v1.EventUpdateReply") proto.RegisterType((*EventDelRequest)(nil), "pb_v1.EventDelRequest") proto.RegisterType((*EventDelReply)(nil), "pb_v1.EventDelReply") proto.RegisterType((*EventListRequest)(nil), "pb_v1.EventListRequest") proto.RegisterType((*EventItem)(nil), "pb_v1.EventItem") proto.RegisterType((*EventListReply)(nil), "pb_v1.EventListReply") proto.RegisterType((*EventSignAddRequest)(nil), "pb_v1.EventSignAddRequest") proto.RegisterType((*EventSignAddReply)(nil), "pb_v1.EventSignAddReply") proto.RegisterType((*EventSignDelRequest)(nil), "pb_v1.EventSignDelRequest") proto.RegisterType((*EventSignDelReply)(nil), "pb_v1.EventSignDelReply") proto.RegisterType((*EventSignListRequest)(nil), "pb_v1.EventSignListRequest") proto.RegisterType((*EventSignItem)(nil), "pb_v1.EventSignItem") proto.RegisterType((*EventSignListReply)(nil), "pb_v1.EventSignListReply") } func init() { proto.RegisterFile("event.proto", fileDescriptor_2d17a9d3f0ddf27e) } var fileDescriptor_2d17a9d3f0ddf27e = []byte{ // 661 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x55, 0xcd, 0x6e, 0xd3, 0x4c, 0x14, 0x95, 0xed, 0xfc, 0xf9, 0xa6, 0x7f, 0xdf, 0xb4, 0xfa, 0x34, 0x9f, 0xaa, 0x7e, 0x0d, 0x86, 0x45, 0x36, 0x6d, 0x55, 0xd8, 0x23, 0xb5, 0xd0, 0x45, 0xa5, 0xae, 0x5c, 0xba, 0x61, 0x63, 0xdc, 0xcc, 0x6d, 0x32, 0x92, 0x7f, 0x06, 0x7b, 0x52, 0x94, 0x6e, 0x10, 0x0b, 0xde, 0x80, 0x17, 0xe1, 0x3d, 0x78, 0x04, 0x1e, 0x06, 0xcd, 0x1d, 0xdb, 0x49, 0xa0, 0xa0, 0xc0, 0x06, 0x21, 0x56, 0xb9, 0xf7, 0x78, 0x7c, 0x32, 0x73, 0xce, 0xb9, 0x63, 0xe8, 0xe3, 0x2d, 0x66, 0xfa, 0x50, 0x15, 0xb9, 0xce, 0x59, 0x5b, 0x5d, 0x47, 0xb7, 0xc7, 0xc1, 0x3b, 0x17, 0x36, 0xcf, 0x0c, 0x7c, 0x22, 0x44, 0x88, 0xaf, 0xa7, 0x58, 0x6a, 0xb6, 0x0b, 0xfe, 0x38, 0x2e, 0x04, 0x66, 0x91, 0x14, 0xdc, 0x19, 0x38, 0x43, 0x2f, 0xec, 0x59, 0xe0, 0x5c, 0xb0, 0x1d, 0x68, 0x6b, 0xa9, 0x13, 0xe4, 0xee, 0xc0, 0x19, 0xfa, 0xa1, 0x6d, 0x18, 0x87, 0xee, 0x28, 0xcf, 0x34, 0x66, 0x9a, 0x7b, 0x84, 0xd7, 0xad, 0x59, 0x5f, 0xea, 0xb8, 0xd0, 0xbc, 0x45, 0x44, 0xb6, 0x61, 0x5b, 0xe0, 0x61, 0x26, 0x78, 0x9b, 0x30, 0x53, 0xb2, 0xff, 0xa1, 0x5f, 0xca, 0x71, 0x16, 0x4d, 0x55, 0x64, 0x9e, 0x74, 0xe8, 0x89, 0x6f, 0xa0, 0x2b, 0x75, 0x96, 0x09, 0xf6, 0x00, 0xd6, 0x14, 0xe6, 0x2a, 0xc1, 0x28, 0x91, 0xa9, 0xd4, 0xbc, 0x4b, 0x0b, 0xfa, 0x16, 0xbb, 0x30, 0x90, 0x21, 0xbd, 0x41, 0xe4, 0x3d, 0x4b, 0x7a, 0x83, 0xc8, 0x18, 0xb4, 0x62, 0x21, 0x0a, 0xee, 0xd3, 0x9e, 0xa8, 0x36, 0xab, 0x94, 0x1c, 0x71, 0x18, 0x78, 0x43, 0x3f, 0x34, 0x65, 0xb0, 0x0f, 0xeb, 0x73, 0x09, 0x54, 0x32, 0x63, 0x1b, 0xe0, 0x36, 0x27, 0x77, 0xa5, 0x08, 0x3e, 0xb8, 0xc0, 0x68, 0xc5, 0x95, 0x12, 0xb1, 0xc6, 0xbf, 0x54, 0xa7, 0x4a, 0x96, 0x7e, 0x23, 0x0b, 0x83, 0xad, 0x25, 0x55, 0x54, 0x32, 0x0b, 0x9e, 0x56, 0x71, 0x7a, 0x8e, 0xc9, 0x4a, 0x32, 0x59, 0x4e, 0xb7, 0xe1, 0xdc, 0xac, 0xbc, 0xa0, 0xf7, 0x0d, 0xe1, 0x7b, 0xa7, 0xfa, 0x97, 0x0b, 0x59, 0xea, 0x95, 0x28, 0x19, 0xb4, 0x54, 0x3c, 0xc6, 0x8a, 0x94, 0x6a, 0xf3, 0x82, 0xf9, 0x8d, 0x4a, 0x79, 0x87, 0xa4, 0xbc, 0x17, 0xf6, 0x0c, 0x70, 0x29, 0xef, 0x90, 0x3d, 0x84, 0xf5, 0x49, 0x3e, 0x2d, 0x71, 0x92, 0x27, 0x22, 0x9a, 0xca, 0x5a, 0xee, 0xb5, 0x06, 0xbc, 0x92, 0x22, 0xf8, 0xec, 0x82, 0x4f, 0xfb, 0x38, 0xd7, 0x98, 0x7e, 0x9d, 0x90, 0x3f, 0xdf, 0xed, 0x39, 0xd1, 0x28, 0x9f, 0x66, 0x9a, 0xc3, 0x22, 0xd1, 0x33, 0x03, 0xb1, 0x7f, 0xa1, 0x53, 0xea, 0x58, 0x4f, 0x4b, 0x8a, 0x40, 0x3b, 0xac, 0x3a, 0xb6, 0x07, 0x30, 0x2a, 0x30, 0xd6, 0x28, 0xa2, 0x58, 0xf3, 0x35, 0x22, 0xf5, 0x2b, 0xe4, 0x44, 0xd7, 0x39, 0x5a, 0x9f, 0xe7, 0x88, 0x41, 0xcb, 0x9c, 0x80, 0x6f, 0x0c, 0x9c, 0x61, 0x2f, 0xa4, 0x3a, 0x78, 0x05, 0x1b, 0x0b, 0x2e, 0x9b, 0x21, 0xac, 0x6d, 0x74, 0x16, 0x6c, 0x34, 0x32, 0xe7, 0x3a, 0x4e, 0x2a, 0x6f, 0x6d, 0xc3, 0x1e, 0x41, 0x2b, 0x91, 0xa5, 0xd1, 0xd8, 0x1b, 0xf6, 0x1f, 0x6f, 0x1d, 0xd2, 0xcd, 0x76, 0xd8, 0x98, 0x15, 0xd2, 0xd3, 0xe0, 0x93, 0x03, 0xdb, 0x84, 0x5d, 0xca, 0x71, 0xb6, 0xea, 0x6d, 0xf7, 0x1f, 0xf4, 0xe8, 0xd2, 0x8c, 0x9a, 0x90, 0x76, 0xa9, 0xb7, 0x03, 0xae, 0x26, 0x79, 0x86, 0x95, 0xb5, 0xb6, 0x31, 0xbb, 0xce, 0xe2, 0x14, 0xc9, 0x57, 0x3f, 0xa4, 0xda, 0xac, 0xb4, 0xa2, 0x5a, 0x63, 0x6d, 0x63, 0xc3, 0x91, 0xa6, 0x26, 0x1c, 0x9d, 0x3a, 0x1c, 0xd4, 0x7e, 0x9b, 0xc7, 0xee, 0x3d, 0x79, 0xdc, 0x86, 0x7f, 0x96, 0x4f, 0x63, 0x86, 0xe5, 0x74, 0xe1, 0x88, 0xbf, 0x3a, 0x81, 0x8b, 0xc4, 0xcd, 0x14, 0xbe, 0x85, 0x9d, 0x06, 0x5c, 0x79, 0x10, 0x7f, 0x20, 0x5e, 0x6d, 0xae, 0xf7, 0xbd, 0x19, 0x6d, 0x2d, 0xcf, 0x68, 0xf0, 0xd1, 0xa9, 0x2e, 0x06, 0xb3, 0x83, 0x7b, 0x47, 0xf0, 0xb7, 0x58, 0xb5, 0x0b, 0x34, 0x8c, 0x91, 0x96, 0x29, 0x92, 0x4d, 0x7e, 0xd8, 0x33, 0xc0, 0x0b, 0x99, 0x62, 0x30, 0xa9, 0xbe, 0x1a, 0x73, 0xd1, 0x7e, 0x2e, 0xd7, 0xc3, 0xa5, 0x5c, 0xef, 0x2c, 0xe6, 0xba, 0x56, 0xc1, 0x66, 0xfb, 0x74, 0xff, 0xe5, 0x9e, 0x2a, 0x72, 0x85, 0x85, 0x9e, 0x1d, 0x94, 0xb3, 0x52, 0x63, 0x7a, 0x30, 0x8e, 0x35, 0xbe, 0x89, 0x67, 0x47, 0xea, 0xfa, 0xe8, 0xf6, 0xf8, 0xba, 0x43, 0x1f, 0xfd, 0x27, 0x5f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x38, 0xa9, 0x1c, 0xce, 0x03, 0x08, 0x00, 0x00, }