household.pb.go 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: household.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package v1
  5. import (
  6. fmt "fmt"
  7. proto "github.com/golang/protobuf/proto"
  8. math "math"
  9. )
  10. // Reference imports to suppress errors if they are not otherwise used.
  11. var _ = proto.Marshal
  12. var _ = fmt.Errorf
  13. var _ = math.Inf
  14. // This is a compile-time assertion to ensure that this generated file
  15. // is compatible with the proto package it is being compiled against.
  16. // A compilation error at this line likely means your copy of the
  17. // proto package needs to be updated.
  18. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  19. // 删除未审核的申请(小区被删,房屋被删,或房屋号信息被改)
  20. type HouseholdDelApplyRequest struct {
  21. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  22. HouseId int64 `protobuf:"varint,2,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  23. GardenId int64 `protobuf:"varint,3,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  24. BuildingId int64 `protobuf:"varint,4,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  25. UnitId int64 `protobuf:"varint,5,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  26. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  27. XXX_unrecognized []byte `json:"-"`
  28. XXX_sizecache int32 `json:"-"`
  29. }
  30. func (m *HouseholdDelApplyRequest) Reset() { *m = HouseholdDelApplyRequest{} }
  31. func (m *HouseholdDelApplyRequest) String() string { return proto.CompactTextString(m) }
  32. func (*HouseholdDelApplyRequest) ProtoMessage() {}
  33. func (*HouseholdDelApplyRequest) Descriptor() ([]byte, []int) {
  34. return fileDescriptor_137f5ce6ca8cb923, []int{0}
  35. }
  36. func (m *HouseholdDelApplyRequest) XXX_Unmarshal(b []byte) error {
  37. return xxx_messageInfo_HouseholdDelApplyRequest.Unmarshal(m, b)
  38. }
  39. func (m *HouseholdDelApplyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  40. return xxx_messageInfo_HouseholdDelApplyRequest.Marshal(b, m, deterministic)
  41. }
  42. func (m *HouseholdDelApplyRequest) XXX_Merge(src proto.Message) {
  43. xxx_messageInfo_HouseholdDelApplyRequest.Merge(m, src)
  44. }
  45. func (m *HouseholdDelApplyRequest) XXX_Size() int {
  46. return xxx_messageInfo_HouseholdDelApplyRequest.Size(m)
  47. }
  48. func (m *HouseholdDelApplyRequest) XXX_DiscardUnknown() {
  49. xxx_messageInfo_HouseholdDelApplyRequest.DiscardUnknown(m)
  50. }
  51. var xxx_messageInfo_HouseholdDelApplyRequest proto.InternalMessageInfo
  52. func (m *HouseholdDelApplyRequest) GetId() int64 {
  53. if m != nil {
  54. return m.Id
  55. }
  56. return 0
  57. }
  58. func (m *HouseholdDelApplyRequest) GetHouseId() int64 {
  59. if m != nil {
  60. return m.HouseId
  61. }
  62. return 0
  63. }
  64. func (m *HouseholdDelApplyRequest) GetGardenId() int64 {
  65. if m != nil {
  66. return m.GardenId
  67. }
  68. return 0
  69. }
  70. func (m *HouseholdDelApplyRequest) GetBuildingId() int64 {
  71. if m != nil {
  72. return m.BuildingId
  73. }
  74. return 0
  75. }
  76. func (m *HouseholdDelApplyRequest) GetUnitId() int64 {
  77. if m != nil {
  78. return m.UnitId
  79. }
  80. return 0
  81. }
  82. type HouseholdDelApplyReply struct {
  83. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  84. XXX_unrecognized []byte `json:"-"`
  85. XXX_sizecache int32 `json:"-"`
  86. }
  87. func (m *HouseholdDelApplyReply) Reset() { *m = HouseholdDelApplyReply{} }
  88. func (m *HouseholdDelApplyReply) String() string { return proto.CompactTextString(m) }
  89. func (*HouseholdDelApplyReply) ProtoMessage() {}
  90. func (*HouseholdDelApplyReply) Descriptor() ([]byte, []int) {
  91. return fileDescriptor_137f5ce6ca8cb923, []int{1}
  92. }
  93. func (m *HouseholdDelApplyReply) XXX_Unmarshal(b []byte) error {
  94. return xxx_messageInfo_HouseholdDelApplyReply.Unmarshal(m, b)
  95. }
  96. func (m *HouseholdDelApplyReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  97. return xxx_messageInfo_HouseholdDelApplyReply.Marshal(b, m, deterministic)
  98. }
  99. func (m *HouseholdDelApplyReply) XXX_Merge(src proto.Message) {
  100. xxx_messageInfo_HouseholdDelApplyReply.Merge(m, src)
  101. }
  102. func (m *HouseholdDelApplyReply) XXX_Size() int {
  103. return xxx_messageInfo_HouseholdDelApplyReply.Size(m)
  104. }
  105. func (m *HouseholdDelApplyReply) XXX_DiscardUnknown() {
  106. xxx_messageInfo_HouseholdDelApplyReply.DiscardUnknown(m)
  107. }
  108. var xxx_messageInfo_HouseholdDelApplyReply proto.InternalMessageInfo
  109. type HouseholdGardenNameChangeRequest struct {
  110. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  111. GardenName string `protobuf:"bytes,2,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  112. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  113. XXX_unrecognized []byte `json:"-"`
  114. XXX_sizecache int32 `json:"-"`
  115. }
  116. func (m *HouseholdGardenNameChangeRequest) Reset() { *m = HouseholdGardenNameChangeRequest{} }
  117. func (m *HouseholdGardenNameChangeRequest) String() string { return proto.CompactTextString(m) }
  118. func (*HouseholdGardenNameChangeRequest) ProtoMessage() {}
  119. func (*HouseholdGardenNameChangeRequest) Descriptor() ([]byte, []int) {
  120. return fileDescriptor_137f5ce6ca8cb923, []int{2}
  121. }
  122. func (m *HouseholdGardenNameChangeRequest) XXX_Unmarshal(b []byte) error {
  123. return xxx_messageInfo_HouseholdGardenNameChangeRequest.Unmarshal(m, b)
  124. }
  125. func (m *HouseholdGardenNameChangeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  126. return xxx_messageInfo_HouseholdGardenNameChangeRequest.Marshal(b, m, deterministic)
  127. }
  128. func (m *HouseholdGardenNameChangeRequest) XXX_Merge(src proto.Message) {
  129. xxx_messageInfo_HouseholdGardenNameChangeRequest.Merge(m, src)
  130. }
  131. func (m *HouseholdGardenNameChangeRequest) XXX_Size() int {
  132. return xxx_messageInfo_HouseholdGardenNameChangeRequest.Size(m)
  133. }
  134. func (m *HouseholdGardenNameChangeRequest) XXX_DiscardUnknown() {
  135. xxx_messageInfo_HouseholdGardenNameChangeRequest.DiscardUnknown(m)
  136. }
  137. var xxx_messageInfo_HouseholdGardenNameChangeRequest proto.InternalMessageInfo
  138. func (m *HouseholdGardenNameChangeRequest) GetGardenId() int64 {
  139. if m != nil {
  140. return m.GardenId
  141. }
  142. return 0
  143. }
  144. func (m *HouseholdGardenNameChangeRequest) GetGardenName() string {
  145. if m != nil {
  146. return m.GardenName
  147. }
  148. return ""
  149. }
  150. type HouseholdGardenNameChangeReply struct {
  151. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  152. XXX_unrecognized []byte `json:"-"`
  153. XXX_sizecache int32 `json:"-"`
  154. }
  155. func (m *HouseholdGardenNameChangeReply) Reset() { *m = HouseholdGardenNameChangeReply{} }
  156. func (m *HouseholdGardenNameChangeReply) String() string { return proto.CompactTextString(m) }
  157. func (*HouseholdGardenNameChangeReply) ProtoMessage() {}
  158. func (*HouseholdGardenNameChangeReply) Descriptor() ([]byte, []int) {
  159. return fileDescriptor_137f5ce6ca8cb923, []int{3}
  160. }
  161. func (m *HouseholdGardenNameChangeReply) XXX_Unmarshal(b []byte) error {
  162. return xxx_messageInfo_HouseholdGardenNameChangeReply.Unmarshal(m, b)
  163. }
  164. func (m *HouseholdGardenNameChangeReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  165. return xxx_messageInfo_HouseholdGardenNameChangeReply.Marshal(b, m, deterministic)
  166. }
  167. func (m *HouseholdGardenNameChangeReply) XXX_Merge(src proto.Message) {
  168. xxx_messageInfo_HouseholdGardenNameChangeReply.Merge(m, src)
  169. }
  170. func (m *HouseholdGardenNameChangeReply) XXX_Size() int {
  171. return xxx_messageInfo_HouseholdGardenNameChangeReply.Size(m)
  172. }
  173. func (m *HouseholdGardenNameChangeReply) XXX_DiscardUnknown() {
  174. xxx_messageInfo_HouseholdGardenNameChangeReply.DiscardUnknown(m)
  175. }
  176. var xxx_messageInfo_HouseholdGardenNameChangeReply proto.InternalMessageInfo
  177. type HouseholdRefuseRequest struct {
  178. HouseId int64 `protobuf:"varint,1,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  179. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  180. UnitId int64 `protobuf:"varint,3,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  181. BuildingId int64 `protobuf:"varint,4,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  182. Feedback string `protobuf:"bytes,5,opt,name=feedback,proto3" json:"feedback"`
  183. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  184. XXX_unrecognized []byte `json:"-"`
  185. XXX_sizecache int32 `json:"-"`
  186. }
  187. func (m *HouseholdRefuseRequest) Reset() { *m = HouseholdRefuseRequest{} }
  188. func (m *HouseholdRefuseRequest) String() string { return proto.CompactTextString(m) }
  189. func (*HouseholdRefuseRequest) ProtoMessage() {}
  190. func (*HouseholdRefuseRequest) Descriptor() ([]byte, []int) {
  191. return fileDescriptor_137f5ce6ca8cb923, []int{4}
  192. }
  193. func (m *HouseholdRefuseRequest) XXX_Unmarshal(b []byte) error {
  194. return xxx_messageInfo_HouseholdRefuseRequest.Unmarshal(m, b)
  195. }
  196. func (m *HouseholdRefuseRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  197. return xxx_messageInfo_HouseholdRefuseRequest.Marshal(b, m, deterministic)
  198. }
  199. func (m *HouseholdRefuseRequest) XXX_Merge(src proto.Message) {
  200. xxx_messageInfo_HouseholdRefuseRequest.Merge(m, src)
  201. }
  202. func (m *HouseholdRefuseRequest) XXX_Size() int {
  203. return xxx_messageInfo_HouseholdRefuseRequest.Size(m)
  204. }
  205. func (m *HouseholdRefuseRequest) XXX_DiscardUnknown() {
  206. xxx_messageInfo_HouseholdRefuseRequest.DiscardUnknown(m)
  207. }
  208. var xxx_messageInfo_HouseholdRefuseRequest proto.InternalMessageInfo
  209. func (m *HouseholdRefuseRequest) GetHouseId() int64 {
  210. if m != nil {
  211. return m.HouseId
  212. }
  213. return 0
  214. }
  215. func (m *HouseholdRefuseRequest) GetGardenId() int64 {
  216. if m != nil {
  217. return m.GardenId
  218. }
  219. return 0
  220. }
  221. func (m *HouseholdRefuseRequest) GetUnitId() int64 {
  222. if m != nil {
  223. return m.UnitId
  224. }
  225. return 0
  226. }
  227. func (m *HouseholdRefuseRequest) GetBuildingId() int64 {
  228. if m != nil {
  229. return m.BuildingId
  230. }
  231. return 0
  232. }
  233. func (m *HouseholdRefuseRequest) GetFeedback() string {
  234. if m != nil {
  235. return m.Feedback
  236. }
  237. return ""
  238. }
  239. type HouseholdRefuseReply struct {
  240. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  241. XXX_unrecognized []byte `json:"-"`
  242. XXX_sizecache int32 `json:"-"`
  243. }
  244. func (m *HouseholdRefuseReply) Reset() { *m = HouseholdRefuseReply{} }
  245. func (m *HouseholdRefuseReply) String() string { return proto.CompactTextString(m) }
  246. func (*HouseholdRefuseReply) ProtoMessage() {}
  247. func (*HouseholdRefuseReply) Descriptor() ([]byte, []int) {
  248. return fileDescriptor_137f5ce6ca8cb923, []int{5}
  249. }
  250. func (m *HouseholdRefuseReply) XXX_Unmarshal(b []byte) error {
  251. return xxx_messageInfo_HouseholdRefuseReply.Unmarshal(m, b)
  252. }
  253. func (m *HouseholdRefuseReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  254. return xxx_messageInfo_HouseholdRefuseReply.Marshal(b, m, deterministic)
  255. }
  256. func (m *HouseholdRefuseReply) XXX_Merge(src proto.Message) {
  257. xxx_messageInfo_HouseholdRefuseReply.Merge(m, src)
  258. }
  259. func (m *HouseholdRefuseReply) XXX_Size() int {
  260. return xxx_messageInfo_HouseholdRefuseReply.Size(m)
  261. }
  262. func (m *HouseholdRefuseReply) XXX_DiscardUnknown() {
  263. xxx_messageInfo_HouseholdRefuseReply.DiscardUnknown(m)
  264. }
  265. var xxx_messageInfo_HouseholdRefuseReply proto.InternalMessageInfo
  266. type HouseRentChangeFieldRequest struct {
  267. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  268. HouseId int64 `protobuf:"varint,2,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  269. UnitId int64 `protobuf:"varint,3,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  270. RoomCount int64 `protobuf:"varint,4,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
  271. HallCount int64 `protobuf:"varint,5,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
  272. HasLift bool `protobuf:"varint,6,opt,name=has_lift,json=hasLift,proto3" json:"has_lift"`
  273. HouseArea float64 `protobuf:"fixed64,7,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
  274. Layer int64 `protobuf:"varint,8,opt,name=layer,proto3" json:"layer"`
  275. GardenName string `protobuf:"bytes,9,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  276. Lnt float64 `protobuf:"fixed64,10,opt,name=lnt,proto3" json:"lnt"`
  277. Lat float64 `protobuf:"fixed64,11,opt,name=lat,proto3" json:"lat"`
  278. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  279. XXX_unrecognized []byte `json:"-"`
  280. XXX_sizecache int32 `json:"-"`
  281. }
  282. func (m *HouseRentChangeFieldRequest) Reset() { *m = HouseRentChangeFieldRequest{} }
  283. func (m *HouseRentChangeFieldRequest) String() string { return proto.CompactTextString(m) }
  284. func (*HouseRentChangeFieldRequest) ProtoMessage() {}
  285. func (*HouseRentChangeFieldRequest) Descriptor() ([]byte, []int) {
  286. return fileDescriptor_137f5ce6ca8cb923, []int{6}
  287. }
  288. func (m *HouseRentChangeFieldRequest) XXX_Unmarshal(b []byte) error {
  289. return xxx_messageInfo_HouseRentChangeFieldRequest.Unmarshal(m, b)
  290. }
  291. func (m *HouseRentChangeFieldRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  292. return xxx_messageInfo_HouseRentChangeFieldRequest.Marshal(b, m, deterministic)
  293. }
  294. func (m *HouseRentChangeFieldRequest) XXX_Merge(src proto.Message) {
  295. xxx_messageInfo_HouseRentChangeFieldRequest.Merge(m, src)
  296. }
  297. func (m *HouseRentChangeFieldRequest) XXX_Size() int {
  298. return xxx_messageInfo_HouseRentChangeFieldRequest.Size(m)
  299. }
  300. func (m *HouseRentChangeFieldRequest) XXX_DiscardUnknown() {
  301. xxx_messageInfo_HouseRentChangeFieldRequest.DiscardUnknown(m)
  302. }
  303. var xxx_messageInfo_HouseRentChangeFieldRequest proto.InternalMessageInfo
  304. func (m *HouseRentChangeFieldRequest) GetGardenId() int64 {
  305. if m != nil {
  306. return m.GardenId
  307. }
  308. return 0
  309. }
  310. func (m *HouseRentChangeFieldRequest) GetHouseId() int64 {
  311. if m != nil {
  312. return m.HouseId
  313. }
  314. return 0
  315. }
  316. func (m *HouseRentChangeFieldRequest) GetUnitId() int64 {
  317. if m != nil {
  318. return m.UnitId
  319. }
  320. return 0
  321. }
  322. func (m *HouseRentChangeFieldRequest) GetRoomCount() int64 {
  323. if m != nil {
  324. return m.RoomCount
  325. }
  326. return 0
  327. }
  328. func (m *HouseRentChangeFieldRequest) GetHallCount() int64 {
  329. if m != nil {
  330. return m.HallCount
  331. }
  332. return 0
  333. }
  334. func (m *HouseRentChangeFieldRequest) GetHasLift() bool {
  335. if m != nil {
  336. return m.HasLift
  337. }
  338. return false
  339. }
  340. func (m *HouseRentChangeFieldRequest) GetHouseArea() float64 {
  341. if m != nil {
  342. return m.HouseArea
  343. }
  344. return 0
  345. }
  346. func (m *HouseRentChangeFieldRequest) GetLayer() int64 {
  347. if m != nil {
  348. return m.Layer
  349. }
  350. return 0
  351. }
  352. func (m *HouseRentChangeFieldRequest) GetGardenName() string {
  353. if m != nil {
  354. return m.GardenName
  355. }
  356. return ""
  357. }
  358. func (m *HouseRentChangeFieldRequest) GetLnt() float64 {
  359. if m != nil {
  360. return m.Lnt
  361. }
  362. return 0
  363. }
  364. func (m *HouseRentChangeFieldRequest) GetLat() float64 {
  365. if m != nil {
  366. return m.Lat
  367. }
  368. return 0
  369. }
  370. type HouseRentChangeFieldReply struct {
  371. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  372. XXX_unrecognized []byte `json:"-"`
  373. XXX_sizecache int32 `json:"-"`
  374. }
  375. func (m *HouseRentChangeFieldReply) Reset() { *m = HouseRentChangeFieldReply{} }
  376. func (m *HouseRentChangeFieldReply) String() string { return proto.CompactTextString(m) }
  377. func (*HouseRentChangeFieldReply) ProtoMessage() {}
  378. func (*HouseRentChangeFieldReply) Descriptor() ([]byte, []int) {
  379. return fileDescriptor_137f5ce6ca8cb923, []int{7}
  380. }
  381. func (m *HouseRentChangeFieldReply) XXX_Unmarshal(b []byte) error {
  382. return xxx_messageInfo_HouseRentChangeFieldReply.Unmarshal(m, b)
  383. }
  384. func (m *HouseRentChangeFieldReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  385. return xxx_messageInfo_HouseRentChangeFieldReply.Marshal(b, m, deterministic)
  386. }
  387. func (m *HouseRentChangeFieldReply) XXX_Merge(src proto.Message) {
  388. xxx_messageInfo_HouseRentChangeFieldReply.Merge(m, src)
  389. }
  390. func (m *HouseRentChangeFieldReply) XXX_Size() int {
  391. return xxx_messageInfo_HouseRentChangeFieldReply.Size(m)
  392. }
  393. func (m *HouseRentChangeFieldReply) XXX_DiscardUnknown() {
  394. xxx_messageInfo_HouseRentChangeFieldReply.DiscardUnknown(m)
  395. }
  396. var xxx_messageInfo_HouseRentChangeFieldReply proto.InternalMessageInfo
  397. type HouseholdWaitCountRequest struct {
  398. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  399. BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  400. UnitId int64 `protobuf:"varint,3,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  401. HouseId int64 `protobuf:"varint,4,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  402. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  403. XXX_unrecognized []byte `json:"-"`
  404. XXX_sizecache int32 `json:"-"`
  405. }
  406. func (m *HouseholdWaitCountRequest) Reset() { *m = HouseholdWaitCountRequest{} }
  407. func (m *HouseholdWaitCountRequest) String() string { return proto.CompactTextString(m) }
  408. func (*HouseholdWaitCountRequest) ProtoMessage() {}
  409. func (*HouseholdWaitCountRequest) Descriptor() ([]byte, []int) {
  410. return fileDescriptor_137f5ce6ca8cb923, []int{8}
  411. }
  412. func (m *HouseholdWaitCountRequest) XXX_Unmarshal(b []byte) error {
  413. return xxx_messageInfo_HouseholdWaitCountRequest.Unmarshal(m, b)
  414. }
  415. func (m *HouseholdWaitCountRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  416. return xxx_messageInfo_HouseholdWaitCountRequest.Marshal(b, m, deterministic)
  417. }
  418. func (m *HouseholdWaitCountRequest) XXX_Merge(src proto.Message) {
  419. xxx_messageInfo_HouseholdWaitCountRequest.Merge(m, src)
  420. }
  421. func (m *HouseholdWaitCountRequest) XXX_Size() int {
  422. return xxx_messageInfo_HouseholdWaitCountRequest.Size(m)
  423. }
  424. func (m *HouseholdWaitCountRequest) XXX_DiscardUnknown() {
  425. xxx_messageInfo_HouseholdWaitCountRequest.DiscardUnknown(m)
  426. }
  427. var xxx_messageInfo_HouseholdWaitCountRequest proto.InternalMessageInfo
  428. func (m *HouseholdWaitCountRequest) GetGardenId() int64 {
  429. if m != nil {
  430. return m.GardenId
  431. }
  432. return 0
  433. }
  434. func (m *HouseholdWaitCountRequest) GetBuildingId() int64 {
  435. if m != nil {
  436. return m.BuildingId
  437. }
  438. return 0
  439. }
  440. func (m *HouseholdWaitCountRequest) GetUnitId() int64 {
  441. if m != nil {
  442. return m.UnitId
  443. }
  444. return 0
  445. }
  446. func (m *HouseholdWaitCountRequest) GetHouseId() int64 {
  447. if m != nil {
  448. return m.HouseId
  449. }
  450. return 0
  451. }
  452. type HouseholdWaitCountReply struct {
  453. Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count"`
  454. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  455. XXX_unrecognized []byte `json:"-"`
  456. XXX_sizecache int32 `json:"-"`
  457. }
  458. func (m *HouseholdWaitCountReply) Reset() { *m = HouseholdWaitCountReply{} }
  459. func (m *HouseholdWaitCountReply) String() string { return proto.CompactTextString(m) }
  460. func (*HouseholdWaitCountReply) ProtoMessage() {}
  461. func (*HouseholdWaitCountReply) Descriptor() ([]byte, []int) {
  462. return fileDescriptor_137f5ce6ca8cb923, []int{9}
  463. }
  464. func (m *HouseholdWaitCountReply) XXX_Unmarshal(b []byte) error {
  465. return xxx_messageInfo_HouseholdWaitCountReply.Unmarshal(m, b)
  466. }
  467. func (m *HouseholdWaitCountReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  468. return xxx_messageInfo_HouseholdWaitCountReply.Marshal(b, m, deterministic)
  469. }
  470. func (m *HouseholdWaitCountReply) XXX_Merge(src proto.Message) {
  471. xxx_messageInfo_HouseholdWaitCountReply.Merge(m, src)
  472. }
  473. func (m *HouseholdWaitCountReply) XXX_Size() int {
  474. return xxx_messageInfo_HouseholdWaitCountReply.Size(m)
  475. }
  476. func (m *HouseholdWaitCountReply) XXX_DiscardUnknown() {
  477. xxx_messageInfo_HouseholdWaitCountReply.DiscardUnknown(m)
  478. }
  479. var xxx_messageInfo_HouseholdWaitCountReply proto.InternalMessageInfo
  480. func (m *HouseholdWaitCountReply) GetCount() int64 {
  481. if m != nil {
  482. return m.Count
  483. }
  484. return 0
  485. }
  486. type HouseholdDelHouseRequest struct {
  487. HouseId int64 `protobuf:"varint,1,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  488. HouseholdUid int64 `protobuf:"varint,2,opt,name=household_uid,json=householdUid,proto3" json:"household_uid"`
  489. GardenId int64 `protobuf:"varint,3,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  490. RentIds []int64 `protobuf:"varint,4,rep,packed,name=rent_ids,json=rentIds,proto3" json:"rent_ids"`
  491. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  492. XXX_unrecognized []byte `json:"-"`
  493. XXX_sizecache int32 `json:"-"`
  494. }
  495. func (m *HouseholdDelHouseRequest) Reset() { *m = HouseholdDelHouseRequest{} }
  496. func (m *HouseholdDelHouseRequest) String() string { return proto.CompactTextString(m) }
  497. func (*HouseholdDelHouseRequest) ProtoMessage() {}
  498. func (*HouseholdDelHouseRequest) Descriptor() ([]byte, []int) {
  499. return fileDescriptor_137f5ce6ca8cb923, []int{10}
  500. }
  501. func (m *HouseholdDelHouseRequest) XXX_Unmarshal(b []byte) error {
  502. return xxx_messageInfo_HouseholdDelHouseRequest.Unmarshal(m, b)
  503. }
  504. func (m *HouseholdDelHouseRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  505. return xxx_messageInfo_HouseholdDelHouseRequest.Marshal(b, m, deterministic)
  506. }
  507. func (m *HouseholdDelHouseRequest) XXX_Merge(src proto.Message) {
  508. xxx_messageInfo_HouseholdDelHouseRequest.Merge(m, src)
  509. }
  510. func (m *HouseholdDelHouseRequest) XXX_Size() int {
  511. return xxx_messageInfo_HouseholdDelHouseRequest.Size(m)
  512. }
  513. func (m *HouseholdDelHouseRequest) XXX_DiscardUnknown() {
  514. xxx_messageInfo_HouseholdDelHouseRequest.DiscardUnknown(m)
  515. }
  516. var xxx_messageInfo_HouseholdDelHouseRequest proto.InternalMessageInfo
  517. func (m *HouseholdDelHouseRequest) GetHouseId() int64 {
  518. if m != nil {
  519. return m.HouseId
  520. }
  521. return 0
  522. }
  523. func (m *HouseholdDelHouseRequest) GetHouseholdUid() int64 {
  524. if m != nil {
  525. return m.HouseholdUid
  526. }
  527. return 0
  528. }
  529. func (m *HouseholdDelHouseRequest) GetGardenId() int64 {
  530. if m != nil {
  531. return m.GardenId
  532. }
  533. return 0
  534. }
  535. func (m *HouseholdDelHouseRequest) GetRentIds() []int64 {
  536. if m != nil {
  537. return m.RentIds
  538. }
  539. return nil
  540. }
  541. type HouseholdDelHouseReply struct {
  542. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  543. XXX_unrecognized []byte `json:"-"`
  544. XXX_sizecache int32 `json:"-"`
  545. }
  546. func (m *HouseholdDelHouseReply) Reset() { *m = HouseholdDelHouseReply{} }
  547. func (m *HouseholdDelHouseReply) String() string { return proto.CompactTextString(m) }
  548. func (*HouseholdDelHouseReply) ProtoMessage() {}
  549. func (*HouseholdDelHouseReply) Descriptor() ([]byte, []int) {
  550. return fileDescriptor_137f5ce6ca8cb923, []int{11}
  551. }
  552. func (m *HouseholdDelHouseReply) XXX_Unmarshal(b []byte) error {
  553. return xxx_messageInfo_HouseholdDelHouseReply.Unmarshal(m, b)
  554. }
  555. func (m *HouseholdDelHouseReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  556. return xxx_messageInfo_HouseholdDelHouseReply.Marshal(b, m, deterministic)
  557. }
  558. func (m *HouseholdDelHouseReply) XXX_Merge(src proto.Message) {
  559. xxx_messageInfo_HouseholdDelHouseReply.Merge(m, src)
  560. }
  561. func (m *HouseholdDelHouseReply) XXX_Size() int {
  562. return xxx_messageInfo_HouseholdDelHouseReply.Size(m)
  563. }
  564. func (m *HouseholdDelHouseReply) XXX_DiscardUnknown() {
  565. xxx_messageInfo_HouseholdDelHouseReply.DiscardUnknown(m)
  566. }
  567. var xxx_messageInfo_HouseholdDelHouseReply proto.InternalMessageInfo
  568. func init() {
  569. proto.RegisterType((*HouseholdDelApplyRequest)(nil), "pb_v1.HouseholdDelApplyRequest")
  570. proto.RegisterType((*HouseholdDelApplyReply)(nil), "pb_v1.HouseholdDelApplyReply")
  571. proto.RegisterType((*HouseholdGardenNameChangeRequest)(nil), "pb_v1.HouseholdGardenNameChangeRequest")
  572. proto.RegisterType((*HouseholdGardenNameChangeReply)(nil), "pb_v1.HouseholdGardenNameChangeReply")
  573. proto.RegisterType((*HouseholdRefuseRequest)(nil), "pb_v1.HouseholdRefuseRequest")
  574. proto.RegisterType((*HouseholdRefuseReply)(nil), "pb_v1.HouseholdRefuseReply")
  575. proto.RegisterType((*HouseRentChangeFieldRequest)(nil), "pb_v1.HouseRentChangeFieldRequest")
  576. proto.RegisterType((*HouseRentChangeFieldReply)(nil), "pb_v1.HouseRentChangeFieldReply")
  577. proto.RegisterType((*HouseholdWaitCountRequest)(nil), "pb_v1.HouseholdWaitCountRequest")
  578. proto.RegisterType((*HouseholdWaitCountReply)(nil), "pb_v1.HouseholdWaitCountReply")
  579. proto.RegisterType((*HouseholdDelHouseRequest)(nil), "pb_v1.HouseholdDelHouseRequest")
  580. proto.RegisterType((*HouseholdDelHouseReply)(nil), "pb_v1.HouseholdDelHouseReply")
  581. }
  582. func init() {
  583. proto.RegisterFile("household.proto", fileDescriptor_137f5ce6ca8cb923)
  584. }
  585. var fileDescriptor_137f5ce6ca8cb923 = []byte{
  586. // 524 bytes of a gzipped FileDescriptorProto
  587. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0x4d, 0x8f, 0xd3, 0x30,
  588. 0x10, 0x95, 0xd3, 0x6d, 0x9b, 0xcc, 0xf2, 0xa5, 0x68, 0xd9, 0xba, 0x54, 0x40, 0x14, 0x2e, 0xbd,
  589. 0x40, 0xb5, 0xe2, 0x17, 0x2c, 0x8b, 0x80, 0x4a, 0x88, 0x43, 0x24, 0x84, 0xc4, 0x25, 0x38, 0x6b,
  590. 0xb7, 0xb1, 0x70, 0x13, 0x93, 0x38, 0x2b, 0xe5, 0x47, 0x70, 0xe1, 0xcc, 0x99, 0xff, 0xc1, 0x3f,
  591. 0x43, 0xb6, 0xd3, 0x28, 0xcd, 0x96, 0x76, 0x6f, 0x9d, 0xf7, 0xda, 0x99, 0xf7, 0x9e, 0xa7, 0x03,
  592. 0x0f, 0xd3, 0xbc, 0x2a, 0x59, 0x9a, 0x0b, 0xfa, 0x4a, 0x16, 0xb9, 0xca, 0xfd, 0xa1, 0x4c, 0xe2,
  593. 0x9b, 0x8b, 0xf0, 0x37, 0x02, 0xfc, 0x61, 0x4b, 0xbd, 0x65, 0xe2, 0x52, 0x4a, 0x51, 0x47, 0xec,
  594. 0x47, 0xc5, 0x4a, 0xe5, 0x3f, 0x00, 0x87, 0x53, 0x8c, 0x02, 0x34, 0x1f, 0x44, 0x0e, 0xa7, 0xfe,
  595. 0x14, 0x5c, 0xd3, 0x26, 0xe6, 0x14, 0x3b, 0x06, 0x1d, 0x9b, 0x7a, 0x49, 0xfd, 0x19, 0x78, 0x6b,
  596. 0x52, 0x50, 0x96, 0x69, 0x6e, 0x60, 0x38, 0xd7, 0x02, 0x4b, 0xea, 0x3f, 0x87, 0xd3, 0xa4, 0xe2,
  597. 0x82, 0xf2, 0x6c, 0xad, 0xe9, 0x13, 0x43, 0xc3, 0x16, 0x5a, 0x52, 0x7f, 0x02, 0xe3, 0x2a, 0xe3,
  598. 0x4a, 0x93, 0x43, 0x43, 0x8e, 0x74, 0xb9, 0xa4, 0x21, 0x86, 0xf3, 0x3d, 0xea, 0xa4, 0xa8, 0xc3,
  599. 0x6f, 0x10, 0xb4, 0xcc, 0x7b, 0x33, 0xe8, 0x13, 0xd9, 0xb0, 0xab, 0x94, 0x64, 0x6b, 0xb6, 0xd5,
  600. 0xbf, 0x23, 0x0a, 0xdd, 0x16, 0xd5, 0x90, 0x19, 0xd9, 0x30, 0xe3, 0xc7, 0x8b, 0x60, 0xdd, 0xb6,
  601. 0x0a, 0x03, 0x78, 0x76, 0x60, 0x82, 0xd6, 0xf0, 0x07, 0x75, 0xe4, 0x45, 0x6c, 0x55, 0x95, 0xed,
  602. 0xe8, 0x6e, 0x54, 0xe8, 0x40, 0x54, 0x4e, 0x4f, 0x55, 0x27, 0x89, 0x41, 0x37, 0x89, 0xe3, 0x19,
  603. 0x3e, 0x01, 0x77, 0xc5, 0x18, 0x4d, 0xc8, 0xf5, 0x77, 0x13, 0xa2, 0x17, 0xb5, 0x75, 0x78, 0x0e,
  604. 0x67, 0xb7, 0x74, 0x6a, 0x03, 0x7f, 0x1d, 0x98, 0x19, 0x22, 0x62, 0x99, 0xb2, 0xce, 0xde, 0x71,
  605. 0xa6, 0xbf, 0x73, 0x87, 0x00, 0x0f, 0x6c, 0xc3, 0x7f, 0x5d, 0x3c, 0x05, 0x28, 0xf2, 0x7c, 0x13,
  606. 0x5f, 0xe7, 0x55, 0xa6, 0x1a, 0x13, 0x9e, 0x46, 0xae, 0x34, 0xa0, 0xe9, 0x94, 0x08, 0xd1, 0xd0,
  607. 0x76, 0x15, 0x3c, 0x8d, 0x58, 0x5a, 0x4f, 0x24, 0x65, 0x2c, 0xf8, 0x4a, 0xe1, 0x51, 0x80, 0xe6,
  608. 0x6e, 0x34, 0x4e, 0x49, 0xf9, 0x91, 0xaf, 0xec, 0x2f, 0x8d, 0x18, 0x52, 0x30, 0x82, 0xc7, 0x01,
  609. 0x9a, 0xa3, 0xc8, 0x33, 0xc8, 0x65, 0xc1, 0x88, 0x7f, 0x06, 0x43, 0x41, 0x6a, 0x56, 0x60, 0xd7,
  610. 0xf4, 0xb4, 0x45, 0x7f, 0x05, 0xbc, 0xfe, 0x0a, 0xf8, 0x8f, 0x60, 0x20, 0x32, 0x85, 0xc1, 0xb4,
  611. 0xd3, 0x1f, 0x0d, 0x42, 0x14, 0x3e, 0x6d, 0x10, 0xa2, 0xc2, 0x19, 0x4c, 0xf7, 0x47, 0xa8, 0x03,
  612. 0xfe, 0x89, 0x1a, 0x56, 0x27, 0xff, 0x85, 0x70, 0x65, 0x8c, 0xdc, 0x75, 0x3f, 0xbb, 0x0f, 0xee,
  613. 0x1c, 0xfa, 0xd3, 0xec, 0x86, 0xdc, 0x7d, 0x98, 0x93, 0x9d, 0x87, 0x09, 0x17, 0x30, 0xd9, 0x27,
  614. 0x47, 0x8a, 0x5a, 0x47, 0x64, 0x63, 0xb7, 0x42, 0x6c, 0x11, 0xfe, 0xea, 0xdd, 0x87, 0xc6, 0xea,
  615. 0xd1, 0x25, 0x7f, 0x01, 0xf7, 0xdb, 0x8b, 0x13, 0x57, 0xad, 0xfe, 0x7b, 0x2d, 0xf8, 0x99, 0x1f,
  616. 0x39, 0x1a, 0x53, 0x70, 0x0b, 0x96, 0x69, 0x7b, 0x25, 0x3e, 0x09, 0x06, 0xba, 0xb9, 0xae, 0x97,
  617. 0xb4, 0xec, 0x5f, 0x85, 0x46, 0x93, 0x14, 0xf5, 0x9b, 0xc9, 0xd7, 0xc7, 0xb2, 0xc8, 0x25, 0x2b,
  618. 0x54, 0xfd, 0xd2, 0x76, 0x5a, 0xc8, 0x64, 0x71, 0x73, 0x91, 0x8c, 0xcc, 0xd5, 0x7b, 0xfd, 0x2f,
  619. 0x00, 0x00, 0xff, 0xff, 0x91, 0x0d, 0x64, 0x7d, 0x08, 0x05, 0x00, 0x00,
  620. }