123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: garden.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 BuildingAddRequest struct {
- // 小区id
- GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- // 楼栋编号
- BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
- // 楼栋名
- BuildingName string `protobuf:"bytes,3,opt,name=building_name,json=buildingName,proto3" json:"building_name"`
- // 楼栋建筑面积
- BuildingArea float64 `protobuf:"fixed64,4,opt,name=building_area,json=buildingArea,proto3" json:"building_area"`
- // 楼栋使用面积
- BuildingUsedArea float64 `protobuf:"fixed64,5,opt,name=building_used_area,json=buildingUsedArea,proto3" json:"building_used_area"`
- // 备注
- Comment string `protobuf:"bytes,6,opt,name=comment,proto3" json:"comment"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BuildingAddRequest) Reset() { *m = BuildingAddRequest{} }
- func (m *BuildingAddRequest) String() string { return proto.CompactTextString(m) }
- func (*BuildingAddRequest) ProtoMessage() {}
- func (*BuildingAddRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{0}
- }
- func (m *BuildingAddRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BuildingAddRequest.Unmarshal(m, b)
- }
- func (m *BuildingAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BuildingAddRequest.Marshal(b, m, deterministic)
- }
- func (m *BuildingAddRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BuildingAddRequest.Merge(m, src)
- }
- func (m *BuildingAddRequest) XXX_Size() int {
- return xxx_messageInfo_BuildingAddRequest.Size(m)
- }
- func (m *BuildingAddRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_BuildingAddRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_BuildingAddRequest proto.InternalMessageInfo
- func (m *BuildingAddRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *BuildingAddRequest) GetBuildingNumber() string {
- if m != nil {
- return m.BuildingNumber
- }
- return ""
- }
- func (m *BuildingAddRequest) GetBuildingName() string {
- if m != nil {
- return m.BuildingName
- }
- return ""
- }
- func (m *BuildingAddRequest) GetBuildingArea() float64 {
- if m != nil {
- return m.BuildingArea
- }
- return 0
- }
- func (m *BuildingAddRequest) GetBuildingUsedArea() float64 {
- if m != nil {
- return m.BuildingUsedArea
- }
- return 0
- }
- func (m *BuildingAddRequest) GetComment() string {
- if m != nil {
- return m.Comment
- }
- return ""
- }
- type BuildingAddReply 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 *BuildingAddReply) Reset() { *m = BuildingAddReply{} }
- func (m *BuildingAddReply) String() string { return proto.CompactTextString(m) }
- func (*BuildingAddReply) ProtoMessage() {}
- func (*BuildingAddReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{1}
- }
- func (m *BuildingAddReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BuildingAddReply.Unmarshal(m, b)
- }
- func (m *BuildingAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BuildingAddReply.Marshal(b, m, deterministic)
- }
- func (m *BuildingAddReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BuildingAddReply.Merge(m, src)
- }
- func (m *BuildingAddReply) XXX_Size() int {
- return xxx_messageInfo_BuildingAddReply.Size(m)
- }
- func (m *BuildingAddReply) XXX_DiscardUnknown() {
- xxx_messageInfo_BuildingAddReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_BuildingAddReply proto.InternalMessageInfo
- func (m *BuildingAddReply) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- type BuildingUpdateRequest struct {
- // id
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- // 楼栋编号
- BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
- // 楼栋名
- BuildingName string `protobuf:"bytes,3,opt,name=building_name,json=buildingName,proto3" json:"building_name"`
- // 楼栋建筑面积
- BuildingArea float64 `protobuf:"fixed64,4,opt,name=building_area,json=buildingArea,proto3" json:"building_area"`
- // 楼栋使用面积
- BuildingUsedArea float64 `protobuf:"fixed64,5,opt,name=building_used_area,json=buildingUsedArea,proto3" json:"building_used_area"`
- // 备注
- Comment string `protobuf:"bytes,6,opt,name=comment,proto3" json:"comment"`
- GardenId int64 `protobuf:"varint,7,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BuildingUpdateRequest) Reset() { *m = BuildingUpdateRequest{} }
- func (m *BuildingUpdateRequest) String() string { return proto.CompactTextString(m) }
- func (*BuildingUpdateRequest) ProtoMessage() {}
- func (*BuildingUpdateRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{2}
- }
- func (m *BuildingUpdateRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BuildingUpdateRequest.Unmarshal(m, b)
- }
- func (m *BuildingUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BuildingUpdateRequest.Marshal(b, m, deterministic)
- }
- func (m *BuildingUpdateRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BuildingUpdateRequest.Merge(m, src)
- }
- func (m *BuildingUpdateRequest) XXX_Size() int {
- return xxx_messageInfo_BuildingUpdateRequest.Size(m)
- }
- func (m *BuildingUpdateRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_BuildingUpdateRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_BuildingUpdateRequest proto.InternalMessageInfo
- func (m *BuildingUpdateRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *BuildingUpdateRequest) GetBuildingNumber() string {
- if m != nil {
- return m.BuildingNumber
- }
- return ""
- }
- func (m *BuildingUpdateRequest) GetBuildingName() string {
- if m != nil {
- return m.BuildingName
- }
- return ""
- }
- func (m *BuildingUpdateRequest) GetBuildingArea() float64 {
- if m != nil {
- return m.BuildingArea
- }
- return 0
- }
- func (m *BuildingUpdateRequest) GetBuildingUsedArea() float64 {
- if m != nil {
- return m.BuildingUsedArea
- }
- return 0
- }
- func (m *BuildingUpdateRequest) GetComment() string {
- if m != nil {
- return m.Comment
- }
- return ""
- }
- func (m *BuildingUpdateRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- type BuildingUpdateReply struct {
- Origin *BuildingUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BuildingUpdateReply) Reset() { *m = BuildingUpdateReply{} }
- func (m *BuildingUpdateReply) String() string { return proto.CompactTextString(m) }
- func (*BuildingUpdateReply) ProtoMessage() {}
- func (*BuildingUpdateReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{3}
- }
- func (m *BuildingUpdateReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BuildingUpdateReply.Unmarshal(m, b)
- }
- func (m *BuildingUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BuildingUpdateReply.Marshal(b, m, deterministic)
- }
- func (m *BuildingUpdateReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BuildingUpdateReply.Merge(m, src)
- }
- func (m *BuildingUpdateReply) XXX_Size() int {
- return xxx_messageInfo_BuildingUpdateReply.Size(m)
- }
- func (m *BuildingUpdateReply) XXX_DiscardUnknown() {
- xxx_messageInfo_BuildingUpdateReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_BuildingUpdateReply proto.InternalMessageInfo
- func (m *BuildingUpdateReply) GetOrigin() *BuildingUpdateRequest {
- if m != nil {
- return m.Origin
- }
- return nil
- }
- type BuildingDelRequest struct {
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BuildingDelRequest) Reset() { *m = BuildingDelRequest{} }
- func (m *BuildingDelRequest) String() string { return proto.CompactTextString(m) }
- func (*BuildingDelRequest) ProtoMessage() {}
- func (*BuildingDelRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{4}
- }
- func (m *BuildingDelRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BuildingDelRequest.Unmarshal(m, b)
- }
- func (m *BuildingDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BuildingDelRequest.Marshal(b, m, deterministic)
- }
- func (m *BuildingDelRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BuildingDelRequest.Merge(m, src)
- }
- func (m *BuildingDelRequest) XXX_Size() int {
- return xxx_messageInfo_BuildingDelRequest.Size(m)
- }
- func (m *BuildingDelRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_BuildingDelRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_BuildingDelRequest proto.InternalMessageInfo
- func (m *BuildingDelRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *BuildingDelRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- type BuildingDelReply struct {
- Origin *BuildingUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BuildingDelReply) Reset() { *m = BuildingDelReply{} }
- func (m *BuildingDelReply) String() string { return proto.CompactTextString(m) }
- func (*BuildingDelReply) ProtoMessage() {}
- func (*BuildingDelReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{5}
- }
- func (m *BuildingDelReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BuildingDelReply.Unmarshal(m, b)
- }
- func (m *BuildingDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BuildingDelReply.Marshal(b, m, deterministic)
- }
- func (m *BuildingDelReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BuildingDelReply.Merge(m, src)
- }
- func (m *BuildingDelReply) XXX_Size() int {
- return xxx_messageInfo_BuildingDelReply.Size(m)
- }
- func (m *BuildingDelReply) XXX_DiscardUnknown() {
- xxx_messageInfo_BuildingDelReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_BuildingDelReply proto.InternalMessageInfo
- func (m *BuildingDelReply) GetOrigin() *BuildingUpdateRequest {
- if m != nil {
- return m.Origin
- }
- return nil
- }
- type BuildingListRequest struct {
- BuildingNumber string `protobuf:"bytes,1,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
- 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"`
- GardenId int64 `protobuf:"varint,4,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BuildingListRequest) Reset() { *m = BuildingListRequest{} }
- func (m *BuildingListRequest) String() string { return proto.CompactTextString(m) }
- func (*BuildingListRequest) ProtoMessage() {}
- func (*BuildingListRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{6}
- }
- func (m *BuildingListRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BuildingListRequest.Unmarshal(m, b)
- }
- func (m *BuildingListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BuildingListRequest.Marshal(b, m, deterministic)
- }
- func (m *BuildingListRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BuildingListRequest.Merge(m, src)
- }
- func (m *BuildingListRequest) XXX_Size() int {
- return xxx_messageInfo_BuildingListRequest.Size(m)
- }
- func (m *BuildingListRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_BuildingListRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_BuildingListRequest proto.InternalMessageInfo
- func (m *BuildingListRequest) GetBuildingNumber() string {
- if m != nil {
- return m.BuildingNumber
- }
- return ""
- }
- func (m *BuildingListRequest) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *BuildingListRequest) GetPageSize() int64 {
- if m != nil {
- return m.PageSize
- }
- return 0
- }
- func (m *BuildingListRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- type BuildingItem struct {
- // id
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- // 楼栋编号
- BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
- // 楼栋名
- BuildingName string `protobuf:"bytes,3,opt,name=building_name,json=buildingName,proto3" json:"building_name"`
- // 楼栋建筑面积
- BuildingArea float64 `protobuf:"fixed64,4,opt,name=building_area,json=buildingArea,proto3" json:"building_area"`
- // 楼栋使用面积
- BuildingUsedArea float64 `protobuf:"fixed64,5,opt,name=building_used_area,json=buildingUsedArea,proto3" json:"building_used_area"`
- // 备注
- Comment string `protobuf:"bytes,6,opt,name=comment,proto3" json:"comment"`
- UnitCount int64 `protobuf:"varint,7,opt,name=unit_count,json=unitCount,proto3" json:"unit_count"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BuildingItem) Reset() { *m = BuildingItem{} }
- func (m *BuildingItem) String() string { return proto.CompactTextString(m) }
- func (*BuildingItem) ProtoMessage() {}
- func (*BuildingItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{7}
- }
- func (m *BuildingItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BuildingItem.Unmarshal(m, b)
- }
- func (m *BuildingItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BuildingItem.Marshal(b, m, deterministic)
- }
- func (m *BuildingItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BuildingItem.Merge(m, src)
- }
- func (m *BuildingItem) XXX_Size() int {
- return xxx_messageInfo_BuildingItem.Size(m)
- }
- func (m *BuildingItem) XXX_DiscardUnknown() {
- xxx_messageInfo_BuildingItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_BuildingItem proto.InternalMessageInfo
- func (m *BuildingItem) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *BuildingItem) GetBuildingNumber() string {
- if m != nil {
- return m.BuildingNumber
- }
- return ""
- }
- func (m *BuildingItem) GetBuildingName() string {
- if m != nil {
- return m.BuildingName
- }
- return ""
- }
- func (m *BuildingItem) GetBuildingArea() float64 {
- if m != nil {
- return m.BuildingArea
- }
- return 0
- }
- func (m *BuildingItem) GetBuildingUsedArea() float64 {
- if m != nil {
- return m.BuildingUsedArea
- }
- return 0
- }
- func (m *BuildingItem) GetComment() string {
- if m != nil {
- return m.Comment
- }
- return ""
- }
- func (m *BuildingItem) GetUnitCount() int64 {
- if m != nil {
- return m.UnitCount
- }
- return 0
- }
- type BuildingListReply struct {
- Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
- Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
- List []*BuildingItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BuildingListReply) Reset() { *m = BuildingListReply{} }
- func (m *BuildingListReply) String() string { return proto.CompactTextString(m) }
- func (*BuildingListReply) ProtoMessage() {}
- func (*BuildingListReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{8}
- }
- func (m *BuildingListReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BuildingListReply.Unmarshal(m, b)
- }
- func (m *BuildingListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BuildingListReply.Marshal(b, m, deterministic)
- }
- func (m *BuildingListReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BuildingListReply.Merge(m, src)
- }
- func (m *BuildingListReply) XXX_Size() int {
- return xxx_messageInfo_BuildingListReply.Size(m)
- }
- func (m *BuildingListReply) XXX_DiscardUnknown() {
- xxx_messageInfo_BuildingListReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_BuildingListReply proto.InternalMessageInfo
- func (m *BuildingListReply) GetTotal() int64 {
- if m != nil {
- return m.Total
- }
- return 0
- }
- func (m *BuildingListReply) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *BuildingListReply) GetList() []*BuildingItem {
- if m != nil {
- return m.List
- }
- return nil
- }
- type UnitAddRequest struct {
- GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- // 楼栋id
- BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
- // 单元编号
- UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
- // 单元名
- UnitName string `protobuf:"bytes,4,opt,name=unit_name,json=unitName,proto3" json:"unit_name"`
- // 楼层数
- UnitLayers int64 `protobuf:"varint,5,opt,name=unit_layers,json=unitLayers,proto3" json:"unit_layers"`
- HasLift bool `protobuf:"varint,6,opt,name=has_lift,json=hasLift,proto3" json:"has_lift"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *UnitAddRequest) Reset() { *m = UnitAddRequest{} }
- func (m *UnitAddRequest) String() string { return proto.CompactTextString(m) }
- func (*UnitAddRequest) ProtoMessage() {}
- func (*UnitAddRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{9}
- }
- func (m *UnitAddRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UnitAddRequest.Unmarshal(m, b)
- }
- func (m *UnitAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UnitAddRequest.Marshal(b, m, deterministic)
- }
- func (m *UnitAddRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UnitAddRequest.Merge(m, src)
- }
- func (m *UnitAddRequest) XXX_Size() int {
- return xxx_messageInfo_UnitAddRequest.Size(m)
- }
- func (m *UnitAddRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_UnitAddRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_UnitAddRequest proto.InternalMessageInfo
- func (m *UnitAddRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *UnitAddRequest) GetBuildingId() int64 {
- if m != nil {
- return m.BuildingId
- }
- return 0
- }
- func (m *UnitAddRequest) GetUnitNumber() int64 {
- if m != nil {
- return m.UnitNumber
- }
- return 0
- }
- func (m *UnitAddRequest) GetUnitName() string {
- if m != nil {
- return m.UnitName
- }
- return ""
- }
- func (m *UnitAddRequest) GetUnitLayers() int64 {
- if m != nil {
- return m.UnitLayers
- }
- return 0
- }
- func (m *UnitAddRequest) GetHasLift() bool {
- if m != nil {
- return m.HasLift
- }
- return false
- }
- type UnitAddReply 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 *UnitAddReply) Reset() { *m = UnitAddReply{} }
- func (m *UnitAddReply) String() string { return proto.CompactTextString(m) }
- func (*UnitAddReply) ProtoMessage() {}
- func (*UnitAddReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{10}
- }
- func (m *UnitAddReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UnitAddReply.Unmarshal(m, b)
- }
- func (m *UnitAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UnitAddReply.Marshal(b, m, deterministic)
- }
- func (m *UnitAddReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UnitAddReply.Merge(m, src)
- }
- func (m *UnitAddReply) XXX_Size() int {
- return xxx_messageInfo_UnitAddReply.Size(m)
- }
- func (m *UnitAddReply) XXX_DiscardUnknown() {
- xxx_messageInfo_UnitAddReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_UnitAddReply proto.InternalMessageInfo
- func (m *UnitAddReply) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- type UnitUpdateRequest struct {
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- //
- GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- // 单元编号
- UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
- // 单元名
- UnitName string `protobuf:"bytes,4,opt,name=unit_name,json=unitName,proto3" json:"unit_name"`
- // 楼层数
- UnitLayers int64 `protobuf:"varint,5,opt,name=unit_layers,json=unitLayers,proto3" json:"unit_layers"`
- BuildingId int64 `protobuf:"varint,6,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
- HasLift bool `protobuf:"varint,7,opt,name=has_lift,json=hasLift,proto3" json:"has_lift"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *UnitUpdateRequest) Reset() { *m = UnitUpdateRequest{} }
- func (m *UnitUpdateRequest) String() string { return proto.CompactTextString(m) }
- func (*UnitUpdateRequest) ProtoMessage() {}
- func (*UnitUpdateRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{11}
- }
- func (m *UnitUpdateRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UnitUpdateRequest.Unmarshal(m, b)
- }
- func (m *UnitUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UnitUpdateRequest.Marshal(b, m, deterministic)
- }
- func (m *UnitUpdateRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UnitUpdateRequest.Merge(m, src)
- }
- func (m *UnitUpdateRequest) XXX_Size() int {
- return xxx_messageInfo_UnitUpdateRequest.Size(m)
- }
- func (m *UnitUpdateRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_UnitUpdateRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_UnitUpdateRequest proto.InternalMessageInfo
- func (m *UnitUpdateRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *UnitUpdateRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *UnitUpdateRequest) GetUnitNumber() int64 {
- if m != nil {
- return m.UnitNumber
- }
- return 0
- }
- func (m *UnitUpdateRequest) GetUnitName() string {
- if m != nil {
- return m.UnitName
- }
- return ""
- }
- func (m *UnitUpdateRequest) GetUnitLayers() int64 {
- if m != nil {
- return m.UnitLayers
- }
- return 0
- }
- func (m *UnitUpdateRequest) GetBuildingId() int64 {
- if m != nil {
- return m.BuildingId
- }
- return 0
- }
- func (m *UnitUpdateRequest) GetHasLift() bool {
- if m != nil {
- return m.HasLift
- }
- return false
- }
- type UnitUpdateReply struct {
- Origin *UnitUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *UnitUpdateReply) Reset() { *m = UnitUpdateReply{} }
- func (m *UnitUpdateReply) String() string { return proto.CompactTextString(m) }
- func (*UnitUpdateReply) ProtoMessage() {}
- func (*UnitUpdateReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{12}
- }
- func (m *UnitUpdateReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UnitUpdateReply.Unmarshal(m, b)
- }
- func (m *UnitUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UnitUpdateReply.Marshal(b, m, deterministic)
- }
- func (m *UnitUpdateReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UnitUpdateReply.Merge(m, src)
- }
- func (m *UnitUpdateReply) XXX_Size() int {
- return xxx_messageInfo_UnitUpdateReply.Size(m)
- }
- func (m *UnitUpdateReply) XXX_DiscardUnknown() {
- xxx_messageInfo_UnitUpdateReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_UnitUpdateReply proto.InternalMessageInfo
- func (m *UnitUpdateReply) GetOrigin() *UnitUpdateRequest {
- if m != nil {
- return m.Origin
- }
- return nil
- }
- type UnitDelRequest struct {
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *UnitDelRequest) Reset() { *m = UnitDelRequest{} }
- func (m *UnitDelRequest) String() string { return proto.CompactTextString(m) }
- func (*UnitDelRequest) ProtoMessage() {}
- func (*UnitDelRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{13}
- }
- func (m *UnitDelRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UnitDelRequest.Unmarshal(m, b)
- }
- func (m *UnitDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UnitDelRequest.Marshal(b, m, deterministic)
- }
- func (m *UnitDelRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UnitDelRequest.Merge(m, src)
- }
- func (m *UnitDelRequest) XXX_Size() int {
- return xxx_messageInfo_UnitDelRequest.Size(m)
- }
- func (m *UnitDelRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_UnitDelRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_UnitDelRequest proto.InternalMessageInfo
- func (m *UnitDelRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *UnitDelRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- type UnitDelReply struct {
- Origin *UnitUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *UnitDelReply) Reset() { *m = UnitDelReply{} }
- func (m *UnitDelReply) String() string { return proto.CompactTextString(m) }
- func (*UnitDelReply) ProtoMessage() {}
- func (*UnitDelReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{14}
- }
- func (m *UnitDelReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UnitDelReply.Unmarshal(m, b)
- }
- func (m *UnitDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UnitDelReply.Marshal(b, m, deterministic)
- }
- func (m *UnitDelReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UnitDelReply.Merge(m, src)
- }
- func (m *UnitDelReply) XXX_Size() int {
- return xxx_messageInfo_UnitDelReply.Size(m)
- }
- func (m *UnitDelReply) XXX_DiscardUnknown() {
- xxx_messageInfo_UnitDelReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_UnitDelReply proto.InternalMessageInfo
- func (m *UnitDelReply) GetOrigin() *UnitUpdateRequest {
- if m != nil {
- return m.Origin
- }
- return nil
- }
- type UnitListRequest struct {
- UnitNumber int64 `protobuf:"varint,1,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
- BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_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"`
- GardenId int64 `protobuf:"varint,5,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *UnitListRequest) Reset() { *m = UnitListRequest{} }
- func (m *UnitListRequest) String() string { return proto.CompactTextString(m) }
- func (*UnitListRequest) ProtoMessage() {}
- func (*UnitListRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{15}
- }
- func (m *UnitListRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UnitListRequest.Unmarshal(m, b)
- }
- func (m *UnitListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UnitListRequest.Marshal(b, m, deterministic)
- }
- func (m *UnitListRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UnitListRequest.Merge(m, src)
- }
- func (m *UnitListRequest) XXX_Size() int {
- return xxx_messageInfo_UnitListRequest.Size(m)
- }
- func (m *UnitListRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_UnitListRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_UnitListRequest proto.InternalMessageInfo
- func (m *UnitListRequest) GetUnitNumber() int64 {
- if m != nil {
- return m.UnitNumber
- }
- return 0
- }
- func (m *UnitListRequest) GetBuildingId() int64 {
- if m != nil {
- return m.BuildingId
- }
- return 0
- }
- func (m *UnitListRequest) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *UnitListRequest) GetPageSize() int64 {
- if m != nil {
- return m.PageSize
- }
- return 0
- }
- func (m *UnitListRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- type UnitItem struct {
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- // 楼栋id
- BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
- // 单元编号
- UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
- // 单元名
- UnitName string `protobuf:"bytes,4,opt,name=unit_name,json=unitName,proto3" json:"unit_name"`
- // 楼层数
- UnitLayers int64 `protobuf:"varint,5,opt,name=unit_layers,json=unitLayers,proto3" json:"unit_layers"`
- BuildingName string `protobuf:"bytes,6,opt,name=building_name,json=buildingName,proto3" json:"building_name"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *UnitItem) Reset() { *m = UnitItem{} }
- func (m *UnitItem) String() string { return proto.CompactTextString(m) }
- func (*UnitItem) ProtoMessage() {}
- func (*UnitItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{16}
- }
- func (m *UnitItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UnitItem.Unmarshal(m, b)
- }
- func (m *UnitItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UnitItem.Marshal(b, m, deterministic)
- }
- func (m *UnitItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UnitItem.Merge(m, src)
- }
- func (m *UnitItem) XXX_Size() int {
- return xxx_messageInfo_UnitItem.Size(m)
- }
- func (m *UnitItem) XXX_DiscardUnknown() {
- xxx_messageInfo_UnitItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_UnitItem proto.InternalMessageInfo
- func (m *UnitItem) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *UnitItem) GetBuildingId() int64 {
- if m != nil {
- return m.BuildingId
- }
- return 0
- }
- func (m *UnitItem) GetUnitNumber() int64 {
- if m != nil {
- return m.UnitNumber
- }
- return 0
- }
- func (m *UnitItem) GetUnitName() string {
- if m != nil {
- return m.UnitName
- }
- return ""
- }
- func (m *UnitItem) GetUnitLayers() int64 {
- if m != nil {
- return m.UnitLayers
- }
- return 0
- }
- func (m *UnitItem) GetBuildingName() string {
- if m != nil {
- return m.BuildingName
- }
- return ""
- }
- type UnitListReply struct {
- Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
- Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
- List []*UnitItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *UnitListReply) Reset() { *m = UnitListReply{} }
- func (m *UnitListReply) String() string { return proto.CompactTextString(m) }
- func (*UnitListReply) ProtoMessage() {}
- func (*UnitListReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{17}
- }
- func (m *UnitListReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UnitListReply.Unmarshal(m, b)
- }
- func (m *UnitListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UnitListReply.Marshal(b, m, deterministic)
- }
- func (m *UnitListReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UnitListReply.Merge(m, src)
- }
- func (m *UnitListReply) XXX_Size() int {
- return xxx_messageInfo_UnitListReply.Size(m)
- }
- func (m *UnitListReply) XXX_DiscardUnknown() {
- xxx_messageInfo_UnitListReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_UnitListReply proto.InternalMessageInfo
- func (m *UnitListReply) GetTotal() int64 {
- if m != nil {
- return m.Total
- }
- return 0
- }
- func (m *UnitListReply) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *UnitListReply) GetList() []*UnitItem {
- if m != nil {
- return m.List
- }
- return nil
- }
- type HouseAddRequest struct {
- GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
- // 单元id
- UnitId int64 `protobuf:"varint,3,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
- // 门牌号
- HouseNumber string `protobuf:"bytes,4,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
- // 楼层
- Layer int64 `protobuf:"varint,5,opt,name=layer,proto3" json:"layer"`
- // 几室
- RoomCount int64 `protobuf:"varint,6,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
- // 几厅
- HallCount int64 `protobuf:"varint,7,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
- // 房屋类型 1 住宅 2 公寓 3 商业 4 洋房 5 别墅
- HouseType int64 `protobuf:"varint,8,opt,name=house_type,json=houseType,proto3" json:"house_type"`
- // 房屋建筑面积
- HouseArea float64 `protobuf:"fixed64,9,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
- // 房屋使用面积
- HouseUsedArea float64 `protobuf:"fixed64,10,opt,name=house_used_area,json=houseUsedArea,proto3" json:"house_used_area"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseAddRequest) Reset() { *m = HouseAddRequest{} }
- func (m *HouseAddRequest) String() string { return proto.CompactTextString(m) }
- func (*HouseAddRequest) ProtoMessage() {}
- func (*HouseAddRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{18}
- }
- func (m *HouseAddRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseAddRequest.Unmarshal(m, b)
- }
- func (m *HouseAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseAddRequest.Marshal(b, m, deterministic)
- }
- func (m *HouseAddRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseAddRequest.Merge(m, src)
- }
- func (m *HouseAddRequest) XXX_Size() int {
- return xxx_messageInfo_HouseAddRequest.Size(m)
- }
- func (m *HouseAddRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseAddRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseAddRequest proto.InternalMessageInfo
- func (m *HouseAddRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *HouseAddRequest) GetBuildingId() int64 {
- if m != nil {
- return m.BuildingId
- }
- return 0
- }
- func (m *HouseAddRequest) GetUnitId() int64 {
- if m != nil {
- return m.UnitId
- }
- return 0
- }
- func (m *HouseAddRequest) GetHouseNumber() string {
- if m != nil {
- return m.HouseNumber
- }
- return ""
- }
- func (m *HouseAddRequest) GetLayer() int64 {
- if m != nil {
- return m.Layer
- }
- return 0
- }
- func (m *HouseAddRequest) GetRoomCount() int64 {
- if m != nil {
- return m.RoomCount
- }
- return 0
- }
- func (m *HouseAddRequest) GetHallCount() int64 {
- if m != nil {
- return m.HallCount
- }
- return 0
- }
- func (m *HouseAddRequest) GetHouseType() int64 {
- if m != nil {
- return m.HouseType
- }
- return 0
- }
- func (m *HouseAddRequest) GetHouseArea() float64 {
- if m != nil {
- return m.HouseArea
- }
- return 0
- }
- func (m *HouseAddRequest) GetHouseUsedArea() float64 {
- if m != nil {
- return m.HouseUsedArea
- }
- return 0
- }
- type HouseAddReply 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 *HouseAddReply) Reset() { *m = HouseAddReply{} }
- func (m *HouseAddReply) String() string { return proto.CompactTextString(m) }
- func (*HouseAddReply) ProtoMessage() {}
- func (*HouseAddReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{19}
- }
- func (m *HouseAddReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseAddReply.Unmarshal(m, b)
- }
- func (m *HouseAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseAddReply.Marshal(b, m, deterministic)
- }
- func (m *HouseAddReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseAddReply.Merge(m, src)
- }
- func (m *HouseAddReply) XXX_Size() int {
- return xxx_messageInfo_HouseAddReply.Size(m)
- }
- func (m *HouseAddReply) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseAddReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseAddReply proto.InternalMessageInfo
- func (m *HouseAddReply) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- type HouseUpdateRequest struct {
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- // 房屋使用面积
- HouseUsedArea float64 `protobuf:"fixed64,2,opt,name=house_used_area,json=houseUsedArea,proto3" json:"house_used_area"`
- GardenId int64 `protobuf:"varint,3,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- // 门牌号
- HouseNumber string `protobuf:"bytes,4,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
- // 楼层
- Layer int64 `protobuf:"varint,5,opt,name=layer,proto3" json:"layer"`
- // 几室
- RoomCount int64 `protobuf:"varint,6,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
- // 几厅
- HallCount int64 `protobuf:"varint,7,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
- // 房屋类型 1 住宅 2 公寓 3 商业 4 洋房 5 别墅
- HouseType int64 `protobuf:"varint,8,opt,name=house_type,json=houseType,proto3" json:"house_type"`
- // 房屋建筑面积
- HouseArea float64 `protobuf:"fixed64,9,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
- UnitId int64 `protobuf:"varint,10,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseUpdateRequest) Reset() { *m = HouseUpdateRequest{} }
- func (m *HouseUpdateRequest) String() string { return proto.CompactTextString(m) }
- func (*HouseUpdateRequest) ProtoMessage() {}
- func (*HouseUpdateRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{20}
- }
- func (m *HouseUpdateRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseUpdateRequest.Unmarshal(m, b)
- }
- func (m *HouseUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseUpdateRequest.Marshal(b, m, deterministic)
- }
- func (m *HouseUpdateRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseUpdateRequest.Merge(m, src)
- }
- func (m *HouseUpdateRequest) XXX_Size() int {
- return xxx_messageInfo_HouseUpdateRequest.Size(m)
- }
- func (m *HouseUpdateRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseUpdateRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseUpdateRequest proto.InternalMessageInfo
- func (m *HouseUpdateRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *HouseUpdateRequest) GetHouseUsedArea() float64 {
- if m != nil {
- return m.HouseUsedArea
- }
- return 0
- }
- func (m *HouseUpdateRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *HouseUpdateRequest) GetHouseNumber() string {
- if m != nil {
- return m.HouseNumber
- }
- return ""
- }
- func (m *HouseUpdateRequest) GetLayer() int64 {
- if m != nil {
- return m.Layer
- }
- return 0
- }
- func (m *HouseUpdateRequest) GetRoomCount() int64 {
- if m != nil {
- return m.RoomCount
- }
- return 0
- }
- func (m *HouseUpdateRequest) GetHallCount() int64 {
- if m != nil {
- return m.HallCount
- }
- return 0
- }
- func (m *HouseUpdateRequest) GetHouseType() int64 {
- if m != nil {
- return m.HouseType
- }
- return 0
- }
- func (m *HouseUpdateRequest) GetHouseArea() float64 {
- if m != nil {
- return m.HouseArea
- }
- return 0
- }
- func (m *HouseUpdateRequest) GetUnitId() int64 {
- if m != nil {
- return m.UnitId
- }
- return 0
- }
- type HouseUpdateReply struct {
- Origin *HouseUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseUpdateReply) Reset() { *m = HouseUpdateReply{} }
- func (m *HouseUpdateReply) String() string { return proto.CompactTextString(m) }
- func (*HouseUpdateReply) ProtoMessage() {}
- func (*HouseUpdateReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{21}
- }
- func (m *HouseUpdateReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseUpdateReply.Unmarshal(m, b)
- }
- func (m *HouseUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseUpdateReply.Marshal(b, m, deterministic)
- }
- func (m *HouseUpdateReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseUpdateReply.Merge(m, src)
- }
- func (m *HouseUpdateReply) XXX_Size() int {
- return xxx_messageInfo_HouseUpdateReply.Size(m)
- }
- func (m *HouseUpdateReply) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseUpdateReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseUpdateReply proto.InternalMessageInfo
- func (m *HouseUpdateReply) GetOrigin() *HouseUpdateRequest {
- if m != nil {
- return m.Origin
- }
- return nil
- }
- type HouseDelRequest struct {
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseDelRequest) Reset() { *m = HouseDelRequest{} }
- func (m *HouseDelRequest) String() string { return proto.CompactTextString(m) }
- func (*HouseDelRequest) ProtoMessage() {}
- func (*HouseDelRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{22}
- }
- func (m *HouseDelRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseDelRequest.Unmarshal(m, b)
- }
- func (m *HouseDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseDelRequest.Marshal(b, m, deterministic)
- }
- func (m *HouseDelRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseDelRequest.Merge(m, src)
- }
- func (m *HouseDelRequest) XXX_Size() int {
- return xxx_messageInfo_HouseDelRequest.Size(m)
- }
- func (m *HouseDelRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseDelRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseDelRequest proto.InternalMessageInfo
- func (m *HouseDelRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *HouseDelRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- type HouseDelReply struct {
- Origin *HouseUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseDelReply) Reset() { *m = HouseDelReply{} }
- func (m *HouseDelReply) String() string { return proto.CompactTextString(m) }
- func (*HouseDelReply) ProtoMessage() {}
- func (*HouseDelReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{23}
- }
- func (m *HouseDelReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseDelReply.Unmarshal(m, b)
- }
- func (m *HouseDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseDelReply.Marshal(b, m, deterministic)
- }
- func (m *HouseDelReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseDelReply.Merge(m, src)
- }
- func (m *HouseDelReply) XXX_Size() int {
- return xxx_messageInfo_HouseDelReply.Size(m)
- }
- func (m *HouseDelReply) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseDelReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseDelReply proto.InternalMessageInfo
- func (m *HouseDelReply) GetOrigin() *HouseUpdateRequest {
- if m != nil {
- return m.Origin
- }
- return nil
- }
- type HouseListRequest struct {
- HouseNumber string `protobuf:"bytes,1,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
- BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
- UnitId int64 `protobuf:"varint,3,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
- HouseType int32 `protobuf:"varint,4,opt,name=house_type,json=houseType,proto3" json:"house_type"`
- Page int64 `protobuf:"varint,5,opt,name=page,proto3" json:"page"`
- PageSize int64 `protobuf:"varint,6,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
- GardenId int64 `protobuf:"varint,7,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- HouseStatus int32 `protobuf:"varint,8,opt,name=house_status,json=houseStatus,proto3" json:"house_status"`
- Layer int64 `protobuf:"varint,9,opt,name=layer,proto3" json:"layer"`
- HouseId int64 `protobuf:"varint,10,opt,name=house_id,json=houseId,proto3" json:"house_id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseListRequest) Reset() { *m = HouseListRequest{} }
- func (m *HouseListRequest) String() string { return proto.CompactTextString(m) }
- func (*HouseListRequest) ProtoMessage() {}
- func (*HouseListRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{24}
- }
- func (m *HouseListRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseListRequest.Unmarshal(m, b)
- }
- func (m *HouseListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseListRequest.Marshal(b, m, deterministic)
- }
- func (m *HouseListRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseListRequest.Merge(m, src)
- }
- func (m *HouseListRequest) XXX_Size() int {
- return xxx_messageInfo_HouseListRequest.Size(m)
- }
- func (m *HouseListRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseListRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseListRequest proto.InternalMessageInfo
- func (m *HouseListRequest) GetHouseNumber() string {
- if m != nil {
- return m.HouseNumber
- }
- return ""
- }
- func (m *HouseListRequest) GetBuildingId() int64 {
- if m != nil {
- return m.BuildingId
- }
- return 0
- }
- func (m *HouseListRequest) GetUnitId() int64 {
- if m != nil {
- return m.UnitId
- }
- return 0
- }
- func (m *HouseListRequest) GetHouseType() int32 {
- if m != nil {
- return m.HouseType
- }
- return 0
- }
- func (m *HouseListRequest) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *HouseListRequest) GetPageSize() int64 {
- if m != nil {
- return m.PageSize
- }
- return 0
- }
- func (m *HouseListRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *HouseListRequest) GetHouseStatus() int32 {
- if m != nil {
- return m.HouseStatus
- }
- return 0
- }
- func (m *HouseListRequest) GetLayer() int64 {
- if m != nil {
- return m.Layer
- }
- return 0
- }
- func (m *HouseListRequest) GetHouseId() int64 {
- if m != nil {
- return m.HouseId
- }
- return 0
- }
- type HouseItem struct {
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
- // 单元id
- UnitId int64 `protobuf:"varint,3,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
- // 门牌号
- HouseNumber string `protobuf:"bytes,4,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
- // 楼层
- Layer int64 `protobuf:"varint,5,opt,name=layer,proto3" json:"layer"`
- // 几室
- RoomCount int64 `protobuf:"varint,6,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
- // 几厅
- HallCount int64 `protobuf:"varint,7,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
- // 房屋类型 1 住宅 2 公寓 3 商业 4 洋房 5 别墅
- HouseType int64 `protobuf:"varint,8,opt,name=house_type,json=houseType,proto3" json:"house_type"`
- // 房屋建筑面积
- HouseArea float64 `protobuf:"fixed64,9,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
- // 房屋使用面积
- HouseUsedArea float64 `protobuf:"fixed64,10,opt,name=house_used_area,json=houseUsedArea,proto3" json:"house_used_area"`
- HouseName string `protobuf:"bytes,11,opt,name=house_name,json=houseName,proto3" json:"house_name"`
- // 房屋状态 1 未入住 2 已入住 3 已出租
- Status int32 `protobuf:"varint,12,opt,name=status,proto3" json:"status"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseItem) Reset() { *m = HouseItem{} }
- func (m *HouseItem) String() string { return proto.CompactTextString(m) }
- func (*HouseItem) ProtoMessage() {}
- func (*HouseItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{25}
- }
- func (m *HouseItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseItem.Unmarshal(m, b)
- }
- func (m *HouseItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseItem.Marshal(b, m, deterministic)
- }
- func (m *HouseItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseItem.Merge(m, src)
- }
- func (m *HouseItem) XXX_Size() int {
- return xxx_messageInfo_HouseItem.Size(m)
- }
- func (m *HouseItem) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseItem proto.InternalMessageInfo
- func (m *HouseItem) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *HouseItem) GetBuildingId() int64 {
- if m != nil {
- return m.BuildingId
- }
- return 0
- }
- func (m *HouseItem) GetUnitId() int64 {
- if m != nil {
- return m.UnitId
- }
- return 0
- }
- func (m *HouseItem) GetHouseNumber() string {
- if m != nil {
- return m.HouseNumber
- }
- return ""
- }
- func (m *HouseItem) GetLayer() int64 {
- if m != nil {
- return m.Layer
- }
- return 0
- }
- func (m *HouseItem) GetRoomCount() int64 {
- if m != nil {
- return m.RoomCount
- }
- return 0
- }
- func (m *HouseItem) GetHallCount() int64 {
- if m != nil {
- return m.HallCount
- }
- return 0
- }
- func (m *HouseItem) GetHouseType() int64 {
- if m != nil {
- return m.HouseType
- }
- return 0
- }
- func (m *HouseItem) GetHouseArea() float64 {
- if m != nil {
- return m.HouseArea
- }
- return 0
- }
- func (m *HouseItem) GetHouseUsedArea() float64 {
- if m != nil {
- return m.HouseUsedArea
- }
- return 0
- }
- func (m *HouseItem) GetHouseName() string {
- if m != nil {
- return m.HouseName
- }
- return ""
- }
- func (m *HouseItem) GetStatus() int32 {
- if m != nil {
- return m.Status
- }
- return 0
- }
- type HouseListReply struct {
- Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
- Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
- List []*HouseItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseListReply) Reset() { *m = HouseListReply{} }
- func (m *HouseListReply) String() string { return proto.CompactTextString(m) }
- func (*HouseListReply) ProtoMessage() {}
- func (*HouseListReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{26}
- }
- func (m *HouseListReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseListReply.Unmarshal(m, b)
- }
- func (m *HouseListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseListReply.Marshal(b, m, deterministic)
- }
- func (m *HouseListReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseListReply.Merge(m, src)
- }
- func (m *HouseListReply) XXX_Size() int {
- return xxx_messageInfo_HouseListReply.Size(m)
- }
- func (m *HouseListReply) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseListReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseListReply proto.InternalMessageInfo
- func (m *HouseListReply) GetTotal() int64 {
- if m != nil {
- return m.Total
- }
- return 0
- }
- func (m *HouseListReply) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *HouseListReply) GetList() []*HouseItem {
- if m != nil {
- return m.List
- }
- return nil
- }
- type BatchBuildingItem struct {
- // 备注
- Comment string `protobuf:"bytes,1,opt,name=comment,proto3" json:"comment"`
- // 楼栋编号
- BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
- // 楼栋名
- BuildingName string `protobuf:"bytes,3,opt,name=building_name,json=buildingName,proto3" json:"building_name"`
- // 楼栋建筑面积
- BuildingArea float64 `protobuf:"fixed64,4,opt,name=building_area,json=buildingArea,proto3" json:"building_area"`
- // 楼栋使用面积
- BuildingUsedArea float64 `protobuf:"fixed64,5,opt,name=building_used_area,json=buildingUsedArea,proto3" json:"building_used_area"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BatchBuildingItem) Reset() { *m = BatchBuildingItem{} }
- func (m *BatchBuildingItem) String() string { return proto.CompactTextString(m) }
- func (*BatchBuildingItem) ProtoMessage() {}
- func (*BatchBuildingItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{27}
- }
- func (m *BatchBuildingItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BatchBuildingItem.Unmarshal(m, b)
- }
- func (m *BatchBuildingItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BatchBuildingItem.Marshal(b, m, deterministic)
- }
- func (m *BatchBuildingItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BatchBuildingItem.Merge(m, src)
- }
- func (m *BatchBuildingItem) XXX_Size() int {
- return xxx_messageInfo_BatchBuildingItem.Size(m)
- }
- func (m *BatchBuildingItem) XXX_DiscardUnknown() {
- xxx_messageInfo_BatchBuildingItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_BatchBuildingItem proto.InternalMessageInfo
- func (m *BatchBuildingItem) GetComment() string {
- if m != nil {
- return m.Comment
- }
- return ""
- }
- func (m *BatchBuildingItem) GetBuildingNumber() string {
- if m != nil {
- return m.BuildingNumber
- }
- return ""
- }
- func (m *BatchBuildingItem) GetBuildingName() string {
- if m != nil {
- return m.BuildingName
- }
- return ""
- }
- func (m *BatchBuildingItem) GetBuildingArea() float64 {
- if m != nil {
- return m.BuildingArea
- }
- return 0
- }
- func (m *BatchBuildingItem) GetBuildingUsedArea() float64 {
- if m != nil {
- return m.BuildingUsedArea
- }
- return 0
- }
- type BatchUnitItem struct {
- // 是否有电梯
- HasLift bool `protobuf:"varint,1,opt,name=has_lift,json=hasLift,proto3" json:"has_lift"`
- // 楼栋编号
- BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
- // 单元编号
- UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
- // 单元名
- UnitName string `protobuf:"bytes,4,opt,name=unit_name,json=unitName,proto3" json:"unit_name"`
- // 楼层数
- UnitLayers int64 `protobuf:"varint,5,opt,name=unit_layers,json=unitLayers,proto3" json:"unit_layers"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BatchUnitItem) Reset() { *m = BatchUnitItem{} }
- func (m *BatchUnitItem) String() string { return proto.CompactTextString(m) }
- func (*BatchUnitItem) ProtoMessage() {}
- func (*BatchUnitItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{28}
- }
- func (m *BatchUnitItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BatchUnitItem.Unmarshal(m, b)
- }
- func (m *BatchUnitItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BatchUnitItem.Marshal(b, m, deterministic)
- }
- func (m *BatchUnitItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BatchUnitItem.Merge(m, src)
- }
- func (m *BatchUnitItem) XXX_Size() int {
- return xxx_messageInfo_BatchUnitItem.Size(m)
- }
- func (m *BatchUnitItem) XXX_DiscardUnknown() {
- xxx_messageInfo_BatchUnitItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_BatchUnitItem proto.InternalMessageInfo
- func (m *BatchUnitItem) GetHasLift() bool {
- if m != nil {
- return m.HasLift
- }
- return false
- }
- func (m *BatchUnitItem) GetBuildingNumber() string {
- if m != nil {
- return m.BuildingNumber
- }
- return ""
- }
- func (m *BatchUnitItem) GetUnitNumber() int64 {
- if m != nil {
- return m.UnitNumber
- }
- return 0
- }
- func (m *BatchUnitItem) GetUnitName() string {
- if m != nil {
- return m.UnitName
- }
- return ""
- }
- func (m *BatchUnitItem) GetUnitLayers() int64 {
- if m != nil {
- return m.UnitLayers
- }
- return 0
- }
- type BatchHouseItem struct {
- // 房屋使用面积
- HouseUsedArea float64 `protobuf:"fixed64,1,opt,name=house_used_area,json=houseUsedArea,proto3" json:"house_used_area"`
- BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
- // 单元编号
- UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
- // 门牌号
- HouseNumber string `protobuf:"bytes,4,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
- // 楼层
- Layer int64 `protobuf:"varint,5,opt,name=layer,proto3" json:"layer"`
- // 几室
- RoomCount int64 `protobuf:"varint,6,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
- // 几厅
- HallCount int64 `protobuf:"varint,7,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
- // 房屋类型 1 住宅 2 公寓 3 商业 4 洋房 5 别墅
- HouseType int64 `protobuf:"varint,8,opt,name=house_type,json=houseType,proto3" json:"house_type"`
- // 房屋建筑面积
- HouseArea float64 `protobuf:"fixed64,9,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BatchHouseItem) Reset() { *m = BatchHouseItem{} }
- func (m *BatchHouseItem) String() string { return proto.CompactTextString(m) }
- func (*BatchHouseItem) ProtoMessage() {}
- func (*BatchHouseItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{29}
- }
- func (m *BatchHouseItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BatchHouseItem.Unmarshal(m, b)
- }
- func (m *BatchHouseItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BatchHouseItem.Marshal(b, m, deterministic)
- }
- func (m *BatchHouseItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BatchHouseItem.Merge(m, src)
- }
- func (m *BatchHouseItem) XXX_Size() int {
- return xxx_messageInfo_BatchHouseItem.Size(m)
- }
- func (m *BatchHouseItem) XXX_DiscardUnknown() {
- xxx_messageInfo_BatchHouseItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_BatchHouseItem proto.InternalMessageInfo
- func (m *BatchHouseItem) GetHouseUsedArea() float64 {
- if m != nil {
- return m.HouseUsedArea
- }
- return 0
- }
- func (m *BatchHouseItem) GetBuildingNumber() string {
- if m != nil {
- return m.BuildingNumber
- }
- return ""
- }
- func (m *BatchHouseItem) GetUnitNumber() int64 {
- if m != nil {
- return m.UnitNumber
- }
- return 0
- }
- func (m *BatchHouseItem) GetHouseNumber() string {
- if m != nil {
- return m.HouseNumber
- }
- return ""
- }
- func (m *BatchHouseItem) GetLayer() int64 {
- if m != nil {
- return m.Layer
- }
- return 0
- }
- func (m *BatchHouseItem) GetRoomCount() int64 {
- if m != nil {
- return m.RoomCount
- }
- return 0
- }
- func (m *BatchHouseItem) GetHallCount() int64 {
- if m != nil {
- return m.HallCount
- }
- return 0
- }
- func (m *BatchHouseItem) GetHouseType() int64 {
- if m != nil {
- return m.HouseType
- }
- return 0
- }
- func (m *BatchHouseItem) GetHouseArea() float64 {
- if m != nil {
- return m.HouseArea
- }
- return 0
- }
- type BatchHouseAddRequest struct {
- GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- Buildings []*BatchBuildingItem `protobuf:"bytes,2,rep,name=buildings,proto3" json:"buildings"`
- Units []*BatchUnitItem `protobuf:"bytes,3,rep,name=units,proto3" json:"units"`
- Houses []*BatchHouseItem `protobuf:"bytes,4,rep,name=houses,proto3" json:"houses"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BatchHouseAddRequest) Reset() { *m = BatchHouseAddRequest{} }
- func (m *BatchHouseAddRequest) String() string { return proto.CompactTextString(m) }
- func (*BatchHouseAddRequest) ProtoMessage() {}
- func (*BatchHouseAddRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{30}
- }
- func (m *BatchHouseAddRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BatchHouseAddRequest.Unmarshal(m, b)
- }
- func (m *BatchHouseAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BatchHouseAddRequest.Marshal(b, m, deterministic)
- }
- func (m *BatchHouseAddRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BatchHouseAddRequest.Merge(m, src)
- }
- func (m *BatchHouseAddRequest) XXX_Size() int {
- return xxx_messageInfo_BatchHouseAddRequest.Size(m)
- }
- func (m *BatchHouseAddRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_BatchHouseAddRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_BatchHouseAddRequest proto.InternalMessageInfo
- func (m *BatchHouseAddRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *BatchHouseAddRequest) GetBuildings() []*BatchBuildingItem {
- if m != nil {
- return m.Buildings
- }
- return nil
- }
- func (m *BatchHouseAddRequest) GetUnits() []*BatchUnitItem {
- if m != nil {
- return m.Units
- }
- return nil
- }
- func (m *BatchHouseAddRequest) GetHouses() []*BatchHouseItem {
- if m != nil {
- return m.Houses
- }
- return nil
- }
- type BatchHouseAddReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *BatchHouseAddReply) Reset() { *m = BatchHouseAddReply{} }
- func (m *BatchHouseAddReply) String() string { return proto.CompactTextString(m) }
- func (*BatchHouseAddReply) ProtoMessage() {}
- func (*BatchHouseAddReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{31}
- }
- func (m *BatchHouseAddReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_BatchHouseAddReply.Unmarshal(m, b)
- }
- func (m *BatchHouseAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_BatchHouseAddReply.Marshal(b, m, deterministic)
- }
- func (m *BatchHouseAddReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_BatchHouseAddReply.Merge(m, src)
- }
- func (m *BatchHouseAddReply) XXX_Size() int {
- return xxx_messageInfo_BatchHouseAddReply.Size(m)
- }
- func (m *BatchHouseAddReply) XXX_DiscardUnknown() {
- xxx_messageInfo_BatchHouseAddReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_BatchHouseAddReply proto.InternalMessageInfo
- type HouseInfoRequest struct {
- HouseId int64 `protobuf:"varint,1,opt,name=house_id,json=houseId,proto3" json:"house_id"`
- GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseInfoRequest) Reset() { *m = HouseInfoRequest{} }
- func (m *HouseInfoRequest) String() string { return proto.CompactTextString(m) }
- func (*HouseInfoRequest) ProtoMessage() {}
- func (*HouseInfoRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{32}
- }
- func (m *HouseInfoRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseInfoRequest.Unmarshal(m, b)
- }
- func (m *HouseInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseInfoRequest.Marshal(b, m, deterministic)
- }
- func (m *HouseInfoRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseInfoRequest.Merge(m, src)
- }
- func (m *HouseInfoRequest) XXX_Size() int {
- return xxx_messageInfo_HouseInfoRequest.Size(m)
- }
- func (m *HouseInfoRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseInfoRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseInfoRequest proto.InternalMessageInfo
- func (m *HouseInfoRequest) GetHouseId() int64 {
- if m != nil {
- return m.HouseId
- }
- return 0
- }
- func (m *HouseInfoRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- type HouseInfoReply struct {
- GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
- UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
- HouseNumber string `protobuf:"bytes,4,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
- GardenName string `protobuf:"bytes,5,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
- Province string `protobuf:"bytes,6,opt,name=province,proto3" json:"province"`
- City string `protobuf:"bytes,7,opt,name=city,proto3" json:"city"`
- Area string `protobuf:"bytes,8,opt,name=area,proto3" json:"area"`
- Street string `protobuf:"bytes,9,opt,name=street,proto3" json:"street"`
- Comittee string `protobuf:"bytes,10,opt,name=comittee,proto3" json:"comittee"`
- Layer int64 `protobuf:"varint,11,opt,name=layer,proto3" json:"layer"`
- HouseArea float64 `protobuf:"fixed64,12,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
- HouseUsedArea float64 `protobuf:"fixed64,13,opt,name=house_used_area,json=houseUsedArea,proto3" json:"house_used_area"`
- RoomCount int64 `protobuf:"varint,14,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
- // 几厅
- HallCount int64 `protobuf:"varint,15,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
- // 房屋类型 1 住宅 2 公寓 3 商业 4 洋房 5 别墅
- HouseType int64 `protobuf:"varint,16,opt,name=house_type,json=houseType,proto3" json:"house_type"`
- GardenInUse bool `protobuf:"varint,17,opt,name=garden_in_use,json=gardenInUse,proto3" json:"garden_in_use"`
- ProvinceCode string `protobuf:"bytes,18,opt,name=province_code,json=provinceCode,proto3" json:"province_code"`
- CityCode string `protobuf:"bytes,19,opt,name=city_code,json=cityCode,proto3" json:"city_code"`
- AreaCode string `protobuf:"bytes,20,opt,name=area_code,json=areaCode,proto3" json:"area_code"`
- StreetCode string `protobuf:"bytes,21,opt,name=street_code,json=streetCode,proto3" json:"street_code"`
- ComitteeCode string `protobuf:"bytes,22,opt,name=comittee_code,json=comitteeCode,proto3" json:"comittee_code"`
- HouseStatus int32 `protobuf:"varint,23,opt,name=house_status,json=houseStatus,proto3" json:"house_status"`
- BuildingId int64 `protobuf:"varint,24,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
- UnitId int64 `protobuf:"varint,25,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
- HasLift bool `protobuf:"varint,26,opt,name=has_lift,json=hasLift,proto3" json:"has_lift"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseInfoReply) Reset() { *m = HouseInfoReply{} }
- func (m *HouseInfoReply) String() string { return proto.CompactTextString(m) }
- func (*HouseInfoReply) ProtoMessage() {}
- func (*HouseInfoReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{33}
- }
- func (m *HouseInfoReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseInfoReply.Unmarshal(m, b)
- }
- func (m *HouseInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseInfoReply.Marshal(b, m, deterministic)
- }
- func (m *HouseInfoReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseInfoReply.Merge(m, src)
- }
- func (m *HouseInfoReply) XXX_Size() int {
- return xxx_messageInfo_HouseInfoReply.Size(m)
- }
- func (m *HouseInfoReply) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseInfoReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseInfoReply proto.InternalMessageInfo
- func (m *HouseInfoReply) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *HouseInfoReply) GetBuildingNumber() string {
- if m != nil {
- return m.BuildingNumber
- }
- return ""
- }
- func (m *HouseInfoReply) GetUnitNumber() int64 {
- if m != nil {
- return m.UnitNumber
- }
- return 0
- }
- func (m *HouseInfoReply) GetHouseNumber() string {
- if m != nil {
- return m.HouseNumber
- }
- return ""
- }
- func (m *HouseInfoReply) GetGardenName() string {
- if m != nil {
- return m.GardenName
- }
- return ""
- }
- func (m *HouseInfoReply) GetProvince() string {
- if m != nil {
- return m.Province
- }
- return ""
- }
- func (m *HouseInfoReply) GetCity() string {
- if m != nil {
- return m.City
- }
- return ""
- }
- func (m *HouseInfoReply) GetArea() string {
- if m != nil {
- return m.Area
- }
- return ""
- }
- func (m *HouseInfoReply) GetStreet() string {
- if m != nil {
- return m.Street
- }
- return ""
- }
- func (m *HouseInfoReply) GetComittee() string {
- if m != nil {
- return m.Comittee
- }
- return ""
- }
- func (m *HouseInfoReply) GetLayer() int64 {
- if m != nil {
- return m.Layer
- }
- return 0
- }
- func (m *HouseInfoReply) GetHouseArea() float64 {
- if m != nil {
- return m.HouseArea
- }
- return 0
- }
- func (m *HouseInfoReply) GetHouseUsedArea() float64 {
- if m != nil {
- return m.HouseUsedArea
- }
- return 0
- }
- func (m *HouseInfoReply) GetRoomCount() int64 {
- if m != nil {
- return m.RoomCount
- }
- return 0
- }
- func (m *HouseInfoReply) GetHallCount() int64 {
- if m != nil {
- return m.HallCount
- }
- return 0
- }
- func (m *HouseInfoReply) GetHouseType() int64 {
- if m != nil {
- return m.HouseType
- }
- return 0
- }
- func (m *HouseInfoReply) GetGardenInUse() bool {
- if m != nil {
- return m.GardenInUse
- }
- return false
- }
- func (m *HouseInfoReply) GetProvinceCode() string {
- if m != nil {
- return m.ProvinceCode
- }
- return ""
- }
- func (m *HouseInfoReply) GetCityCode() string {
- if m != nil {
- return m.CityCode
- }
- return ""
- }
- func (m *HouseInfoReply) GetAreaCode() string {
- if m != nil {
- return m.AreaCode
- }
- return ""
- }
- func (m *HouseInfoReply) GetStreetCode() string {
- if m != nil {
- return m.StreetCode
- }
- return ""
- }
- func (m *HouseInfoReply) GetComitteeCode() string {
- if m != nil {
- return m.ComitteeCode
- }
- return ""
- }
- func (m *HouseInfoReply) GetHouseStatus() int32 {
- if m != nil {
- return m.HouseStatus
- }
- return 0
- }
- func (m *HouseInfoReply) GetBuildingId() int64 {
- if m != nil {
- return m.BuildingId
- }
- return 0
- }
- func (m *HouseInfoReply) GetUnitId() int64 {
- if m != nil {
- return m.UnitId
- }
- return 0
- }
- func (m *HouseInfoReply) GetHasLift() bool {
- if m != nil {
- return m.HasLift
- }
- return false
- }
- type HouseholdUserData struct {
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone"`
- NickName string `protobuf:"bytes,3,opt,name=nick_name,json=nickName,proto3" json:"nick_name"`
- RealName string `protobuf:"bytes,4,opt,name=real_name,json=realName,proto3" json:"real_name"`
- IdNumber string `protobuf:"bytes,5,opt,name=id_number,json=idNumber,proto3" json:"id_number"`
- IdType int32 `protobuf:"varint,6,opt,name=id_type,json=idType,proto3" json:"id_type"`
- OpenId string `protobuf:"bytes,7,opt,name=open_id,json=openId,proto3" json:"open_id"`
- UnionId string `protobuf:"bytes,8,opt,name=union_id,json=unionId,proto3" json:"union_id"`
- Avatar string `protobuf:"bytes,9,opt,name=avatar,proto3" json:"avatar"`
- PublicOpenId string `protobuf:"bytes,10,opt,name=public_open_id,json=publicOpenId,proto3" json:"public_open_id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseholdUserData) Reset() { *m = HouseholdUserData{} }
- func (m *HouseholdUserData) String() string { return proto.CompactTextString(m) }
- func (*HouseholdUserData) ProtoMessage() {}
- func (*HouseholdUserData) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{34}
- }
- func (m *HouseholdUserData) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseholdUserData.Unmarshal(m, b)
- }
- func (m *HouseholdUserData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseholdUserData.Marshal(b, m, deterministic)
- }
- func (m *HouseholdUserData) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseholdUserData.Merge(m, src)
- }
- func (m *HouseholdUserData) XXX_Size() int {
- return xxx_messageInfo_HouseholdUserData.Size(m)
- }
- func (m *HouseholdUserData) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseholdUserData.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseholdUserData proto.InternalMessageInfo
- func (m *HouseholdUserData) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *HouseholdUserData) GetPhone() string {
- if m != nil {
- return m.Phone
- }
- return ""
- }
- func (m *HouseholdUserData) GetNickName() string {
- if m != nil {
- return m.NickName
- }
- return ""
- }
- func (m *HouseholdUserData) GetRealName() string {
- if m != nil {
- return m.RealName
- }
- return ""
- }
- func (m *HouseholdUserData) GetIdNumber() string {
- if m != nil {
- return m.IdNumber
- }
- return ""
- }
- func (m *HouseholdUserData) GetIdType() int32 {
- if m != nil {
- return m.IdType
- }
- return 0
- }
- func (m *HouseholdUserData) GetOpenId() string {
- if m != nil {
- return m.OpenId
- }
- return ""
- }
- func (m *HouseholdUserData) GetUnionId() string {
- if m != nil {
- return m.UnionId
- }
- return ""
- }
- func (m *HouseholdUserData) GetAvatar() string {
- if m != nil {
- return m.Avatar
- }
- return ""
- }
- func (m *HouseholdUserData) GetPublicOpenId() string {
- if m != nil {
- return m.PublicOpenId
- }
- return ""
- }
- type HouseholdSyncRequest struct {
- GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- OpenId string `protobuf:"bytes,2,opt,name=open_id,json=openId,proto3" json:"open_id"`
- Uid int64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid"`
- CreatedAt int64 `protobuf:"varint,4,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
- UpdatedAt int64 `protobuf:"varint,5,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at"`
- UserType int32 `protobuf:"varint,6,opt,name=user_type,json=userType,proto3" json:"user_type"`
- HouseId int64 `protobuf:"varint,7,opt,name=house_id,json=houseId,proto3" json:"house_id"`
- BuildingNumber string `protobuf:"bytes,8,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
- UnitNumber int64 `protobuf:"varint,9,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
- HouseNumber string `protobuf:"bytes,10,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
- BuildingId int64 `protobuf:"varint,11,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
- UnitId int64 `protobuf:"varint,12,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
- Appendix string `protobuf:"bytes,13,opt,name=appendix,proto3" json:"appendix"`
- Feedback string `protobuf:"bytes,14,opt,name=feedback,proto3" json:"feedback"`
- Phone string `protobuf:"bytes,15,opt,name=phone,proto3" json:"phone"`
- Name string `protobuf:"bytes,16,opt,name=name,proto3" json:"name"`
- IdType int32 `protobuf:"varint,17,opt,name=id_type,json=idType,proto3" json:"id_type"`
- IdNumber string `protobuf:"bytes,18,opt,name=id_number,json=idNumber,proto3" json:"id_number"`
- ApprovedAt int64 `protobuf:"varint,19,opt,name=approved_at,json=approvedAt,proto3" json:"approved_at"`
- Id int64 `protobuf:"varint,20,opt,name=id,proto3" json:"id"`
- PublicOpenId string `protobuf:"bytes,21,opt,name=public_open_id,json=publicOpenId,proto3" json:"public_open_id"`
- HouseholdUser *HouseholdUserData `protobuf:"bytes,22,opt,name=household_user,json=householdUser,proto3" json:"household_user"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseholdSyncRequest) Reset() { *m = HouseholdSyncRequest{} }
- func (m *HouseholdSyncRequest) String() string { return proto.CompactTextString(m) }
- func (*HouseholdSyncRequest) ProtoMessage() {}
- func (*HouseholdSyncRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{35}
- }
- func (m *HouseholdSyncRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseholdSyncRequest.Unmarshal(m, b)
- }
- func (m *HouseholdSyncRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseholdSyncRequest.Marshal(b, m, deterministic)
- }
- func (m *HouseholdSyncRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseholdSyncRequest.Merge(m, src)
- }
- func (m *HouseholdSyncRequest) XXX_Size() int {
- return xxx_messageInfo_HouseholdSyncRequest.Size(m)
- }
- func (m *HouseholdSyncRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseholdSyncRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseholdSyncRequest proto.InternalMessageInfo
- func (m *HouseholdSyncRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetOpenId() string {
- if m != nil {
- return m.OpenId
- }
- return ""
- }
- func (m *HouseholdSyncRequest) GetUid() int64 {
- if m != nil {
- return m.Uid
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetCreatedAt() int64 {
- if m != nil {
- return m.CreatedAt
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetUpdatedAt() int64 {
- if m != nil {
- return m.UpdatedAt
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetUserType() int32 {
- if m != nil {
- return m.UserType
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetHouseId() int64 {
- if m != nil {
- return m.HouseId
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetBuildingNumber() string {
- if m != nil {
- return m.BuildingNumber
- }
- return ""
- }
- func (m *HouseholdSyncRequest) GetUnitNumber() int64 {
- if m != nil {
- return m.UnitNumber
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetHouseNumber() string {
- if m != nil {
- return m.HouseNumber
- }
- return ""
- }
- func (m *HouseholdSyncRequest) GetBuildingId() int64 {
- if m != nil {
- return m.BuildingId
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetUnitId() int64 {
- if m != nil {
- return m.UnitId
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetAppendix() string {
- if m != nil {
- return m.Appendix
- }
- return ""
- }
- func (m *HouseholdSyncRequest) GetFeedback() string {
- if m != nil {
- return m.Feedback
- }
- return ""
- }
- func (m *HouseholdSyncRequest) GetPhone() string {
- if m != nil {
- return m.Phone
- }
- return ""
- }
- func (m *HouseholdSyncRequest) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *HouseholdSyncRequest) GetIdType() int32 {
- if m != nil {
- return m.IdType
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetIdNumber() string {
- if m != nil {
- return m.IdNumber
- }
- return ""
- }
- func (m *HouseholdSyncRequest) GetApprovedAt() int64 {
- if m != nil {
- return m.ApprovedAt
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *HouseholdSyncRequest) GetPublicOpenId() string {
- if m != nil {
- return m.PublicOpenId
- }
- return ""
- }
- func (m *HouseholdSyncRequest) GetHouseholdUser() *HouseholdUserData {
- if m != nil {
- return m.HouseholdUser
- }
- return nil
- }
- type HouseholdSyncReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseholdSyncReply) Reset() { *m = HouseholdSyncReply{} }
- func (m *HouseholdSyncReply) String() string { return proto.CompactTextString(m) }
- func (*HouseholdSyncReply) ProtoMessage() {}
- func (*HouseholdSyncReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{36}
- }
- func (m *HouseholdSyncReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseholdSyncReply.Unmarshal(m, b)
- }
- func (m *HouseholdSyncReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseholdSyncReply.Marshal(b, m, deterministic)
- }
- func (m *HouseholdSyncReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseholdSyncReply.Merge(m, src)
- }
- func (m *HouseholdSyncReply) XXX_Size() int {
- return xxx_messageInfo_HouseholdSyncReply.Size(m)
- }
- func (m *HouseholdSyncReply) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseholdSyncReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseholdSyncReply proto.InternalMessageInfo
- type HouseholdChangeRequest struct {
- GardenIds []int64 `protobuf:"varint,1,rep,packed,name=garden_ids,json=gardenIds,proto3" json:"garden_ids"`
- Uid int64 `protobuf:"varint,2,opt,name=uid,proto3" json:"uid"`
- Phone string `protobuf:"bytes,15,opt,name=phone,proto3" json:"phone"`
- Name string `protobuf:"bytes,16,opt,name=name,proto3" json:"name"`
- IdType int32 `protobuf:"varint,17,opt,name=id_type,json=idType,proto3" json:"id_type"`
- IdNumber string `protobuf:"bytes,18,opt,name=id_number,json=idNumber,proto3" json:"id_number"`
- PublicOpenId string `protobuf:"bytes,19,opt,name=public_open_id,json=publicOpenId,proto3" json:"public_open_id"`
- NickName string `protobuf:"bytes,20,opt,name=nick_name,json=nickName,proto3" json:"nick_name"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseholdChangeRequest) Reset() { *m = HouseholdChangeRequest{} }
- func (m *HouseholdChangeRequest) String() string { return proto.CompactTextString(m) }
- func (*HouseholdChangeRequest) ProtoMessage() {}
- func (*HouseholdChangeRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{37}
- }
- func (m *HouseholdChangeRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseholdChangeRequest.Unmarshal(m, b)
- }
- func (m *HouseholdChangeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseholdChangeRequest.Marshal(b, m, deterministic)
- }
- func (m *HouseholdChangeRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseholdChangeRequest.Merge(m, src)
- }
- func (m *HouseholdChangeRequest) XXX_Size() int {
- return xxx_messageInfo_HouseholdChangeRequest.Size(m)
- }
- func (m *HouseholdChangeRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseholdChangeRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseholdChangeRequest proto.InternalMessageInfo
- func (m *HouseholdChangeRequest) GetGardenIds() []int64 {
- if m != nil {
- return m.GardenIds
- }
- return nil
- }
- func (m *HouseholdChangeRequest) GetUid() int64 {
- if m != nil {
- return m.Uid
- }
- return 0
- }
- func (m *HouseholdChangeRequest) GetPhone() string {
- if m != nil {
- return m.Phone
- }
- return ""
- }
- func (m *HouseholdChangeRequest) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *HouseholdChangeRequest) GetIdType() int32 {
- if m != nil {
- return m.IdType
- }
- return 0
- }
- func (m *HouseholdChangeRequest) GetIdNumber() string {
- if m != nil {
- return m.IdNumber
- }
- return ""
- }
- func (m *HouseholdChangeRequest) GetPublicOpenId() string {
- if m != nil {
- return m.PublicOpenId
- }
- return ""
- }
- func (m *HouseholdChangeRequest) GetNickName() string {
- if m != nil {
- return m.NickName
- }
- return ""
- }
- type HouseholdChangeReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *HouseholdChangeReply) Reset() { *m = HouseholdChangeReply{} }
- func (m *HouseholdChangeReply) String() string { return proto.CompactTextString(m) }
- func (*HouseholdChangeReply) ProtoMessage() {}
- func (*HouseholdChangeReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{38}
- }
- func (m *HouseholdChangeReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_HouseholdChangeReply.Unmarshal(m, b)
- }
- func (m *HouseholdChangeReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_HouseholdChangeReply.Marshal(b, m, deterministic)
- }
- func (m *HouseholdChangeReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_HouseholdChangeReply.Merge(m, src)
- }
- func (m *HouseholdChangeReply) XXX_Size() int {
- return xxx_messageInfo_HouseholdChangeReply.Size(m)
- }
- func (m *HouseholdChangeReply) XXX_DiscardUnknown() {
- xxx_messageInfo_HouseholdChangeReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_HouseholdChangeReply proto.InternalMessageInfo
- type GardenChangeCompanyRequest struct {
- GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *GardenChangeCompanyRequest) Reset() { *m = GardenChangeCompanyRequest{} }
- func (m *GardenChangeCompanyRequest) String() string { return proto.CompactTextString(m) }
- func (*GardenChangeCompanyRequest) ProtoMessage() {}
- func (*GardenChangeCompanyRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{39}
- }
- func (m *GardenChangeCompanyRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_GardenChangeCompanyRequest.Unmarshal(m, b)
- }
- func (m *GardenChangeCompanyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_GardenChangeCompanyRequest.Marshal(b, m, deterministic)
- }
- func (m *GardenChangeCompanyRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_GardenChangeCompanyRequest.Merge(m, src)
- }
- func (m *GardenChangeCompanyRequest) XXX_Size() int {
- return xxx_messageInfo_GardenChangeCompanyRequest.Size(m)
- }
- func (m *GardenChangeCompanyRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_GardenChangeCompanyRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_GardenChangeCompanyRequest proto.InternalMessageInfo
- func (m *GardenChangeCompanyRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *GardenChangeCompanyRequest) GetCid() int64 {
- if m != nil {
- return m.Cid
- }
- return 0
- }
- type GardenChangeCompanyReply struct {
- Origin *GardenChangeCompanyRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *GardenChangeCompanyReply) Reset() { *m = GardenChangeCompanyReply{} }
- func (m *GardenChangeCompanyReply) String() string { return proto.CompactTextString(m) }
- func (*GardenChangeCompanyReply) ProtoMessage() {}
- func (*GardenChangeCompanyReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{40}
- }
- func (m *GardenChangeCompanyReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_GardenChangeCompanyReply.Unmarshal(m, b)
- }
- func (m *GardenChangeCompanyReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_GardenChangeCompanyReply.Marshal(b, m, deterministic)
- }
- func (m *GardenChangeCompanyReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_GardenChangeCompanyReply.Merge(m, src)
- }
- func (m *GardenChangeCompanyReply) XXX_Size() int {
- return xxx_messageInfo_GardenChangeCompanyReply.Size(m)
- }
- func (m *GardenChangeCompanyReply) XXX_DiscardUnknown() {
- xxx_messageInfo_GardenChangeCompanyReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_GardenChangeCompanyReply proto.InternalMessageInfo
- func (m *GardenChangeCompanyReply) GetOrigin() *GardenChangeCompanyRequest {
- if m != nil {
- return m.Origin
- }
- return nil
- }
- type GardenHouseRentSyncRequest struct {
- Insert bool `protobuf:"varint,1,opt,name=insert,proto3" json:"insert"`
- GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- Datas []byte `protobuf:"bytes,3,opt,name=datas,proto3" json:"datas"`
- Increase int64 `protobuf:"varint,4,opt,name=increase,proto3" json:"increase"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *GardenHouseRentSyncRequest) Reset() { *m = GardenHouseRentSyncRequest{} }
- func (m *GardenHouseRentSyncRequest) String() string { return proto.CompactTextString(m) }
- func (*GardenHouseRentSyncRequest) ProtoMessage() {}
- func (*GardenHouseRentSyncRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{41}
- }
- func (m *GardenHouseRentSyncRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_GardenHouseRentSyncRequest.Unmarshal(m, b)
- }
- func (m *GardenHouseRentSyncRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_GardenHouseRentSyncRequest.Marshal(b, m, deterministic)
- }
- func (m *GardenHouseRentSyncRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_GardenHouseRentSyncRequest.Merge(m, src)
- }
- func (m *GardenHouseRentSyncRequest) XXX_Size() int {
- return xxx_messageInfo_GardenHouseRentSyncRequest.Size(m)
- }
- func (m *GardenHouseRentSyncRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_GardenHouseRentSyncRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_GardenHouseRentSyncRequest proto.InternalMessageInfo
- func (m *GardenHouseRentSyncRequest) GetInsert() bool {
- if m != nil {
- return m.Insert
- }
- return false
- }
- func (m *GardenHouseRentSyncRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *GardenHouseRentSyncRequest) GetDatas() []byte {
- if m != nil {
- return m.Datas
- }
- return nil
- }
- func (m *GardenHouseRentSyncRequest) GetIncrease() int64 {
- if m != nil {
- return m.Increase
- }
- return 0
- }
- type GardenHouseRentSyncReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *GardenHouseRentSyncReply) Reset() { *m = GardenHouseRentSyncReply{} }
- func (m *GardenHouseRentSyncReply) String() string { return proto.CompactTextString(m) }
- func (*GardenHouseRentSyncReply) ProtoMessage() {}
- func (*GardenHouseRentSyncReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{42}
- }
- func (m *GardenHouseRentSyncReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_GardenHouseRentSyncReply.Unmarshal(m, b)
- }
- func (m *GardenHouseRentSyncReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_GardenHouseRentSyncReply.Marshal(b, m, deterministic)
- }
- func (m *GardenHouseRentSyncReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_GardenHouseRentSyncReply.Merge(m, src)
- }
- func (m *GardenHouseRentSyncReply) XXX_Size() int {
- return xxx_messageInfo_GardenHouseRentSyncReply.Size(m)
- }
- func (m *GardenHouseRentSyncReply) XXX_DiscardUnknown() {
- xxx_messageInfo_GardenHouseRentSyncReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_GardenHouseRentSyncReply proto.InternalMessageInfo
- type SystemMsgAddRequest struct {
- GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content"`
- Code string `protobuf:"bytes,3,opt,name=code,proto3" json:"code"`
- Uid int64 `protobuf:"varint,4,opt,name=uid,proto3" json:"uid"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemMsgAddRequest) Reset() { *m = SystemMsgAddRequest{} }
- func (m *SystemMsgAddRequest) String() string { return proto.CompactTextString(m) }
- func (*SystemMsgAddRequest) ProtoMessage() {}
- func (*SystemMsgAddRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{43}
- }
- func (m *SystemMsgAddRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemMsgAddRequest.Unmarshal(m, b)
- }
- func (m *SystemMsgAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemMsgAddRequest.Marshal(b, m, deterministic)
- }
- func (m *SystemMsgAddRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemMsgAddRequest.Merge(m, src)
- }
- func (m *SystemMsgAddRequest) XXX_Size() int {
- return xxx_messageInfo_SystemMsgAddRequest.Size(m)
- }
- func (m *SystemMsgAddRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemMsgAddRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemMsgAddRequest proto.InternalMessageInfo
- func (m *SystemMsgAddRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *SystemMsgAddRequest) GetContent() string {
- if m != nil {
- return m.Content
- }
- return ""
- }
- func (m *SystemMsgAddRequest) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- func (m *SystemMsgAddRequest) GetUid() int64 {
- if m != nil {
- return m.Uid
- }
- return 0
- }
- type SystemMsgAddReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemMsgAddReply) Reset() { *m = SystemMsgAddReply{} }
- func (m *SystemMsgAddReply) String() string { return proto.CompactTextString(m) }
- func (*SystemMsgAddReply) ProtoMessage() {}
- func (*SystemMsgAddReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{44}
- }
- func (m *SystemMsgAddReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemMsgAddReply.Unmarshal(m, b)
- }
- func (m *SystemMsgAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemMsgAddReply.Marshal(b, m, deterministic)
- }
- func (m *SystemMsgAddReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemMsgAddReply.Merge(m, src)
- }
- func (m *SystemMsgAddReply) XXX_Size() int {
- return xxx_messageInfo_SystemMsgAddReply.Size(m)
- }
- func (m *SystemMsgAddReply) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemMsgAddReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemMsgAddReply proto.InternalMessageInfo
- type RepairStatisticSetRequest struct {
- GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
- HandleType int32 `protobuf:"varint,2,opt,name=handle_type,json=handleType,proto3" json:"handle_type"`
- // 为负数表示减少
- TotalIncrease int64 `protobuf:"varint,3,opt,name=total_increase,json=totalIncrease,proto3" json:"total_increase"`
- FinishIncrease int64 `protobuf:"varint,4,opt,name=finish_increase,json=finishIncrease,proto3" json:"finish_increase"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *RepairStatisticSetRequest) Reset() { *m = RepairStatisticSetRequest{} }
- func (m *RepairStatisticSetRequest) String() string { return proto.CompactTextString(m) }
- func (*RepairStatisticSetRequest) ProtoMessage() {}
- func (*RepairStatisticSetRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{45}
- }
- func (m *RepairStatisticSetRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_RepairStatisticSetRequest.Unmarshal(m, b)
- }
- func (m *RepairStatisticSetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_RepairStatisticSetRequest.Marshal(b, m, deterministic)
- }
- func (m *RepairStatisticSetRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_RepairStatisticSetRequest.Merge(m, src)
- }
- func (m *RepairStatisticSetRequest) XXX_Size() int {
- return xxx_messageInfo_RepairStatisticSetRequest.Size(m)
- }
- func (m *RepairStatisticSetRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_RepairStatisticSetRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_RepairStatisticSetRequest proto.InternalMessageInfo
- func (m *RepairStatisticSetRequest) GetGardenId() int64 {
- if m != nil {
- return m.GardenId
- }
- return 0
- }
- func (m *RepairStatisticSetRequest) GetHandleType() int32 {
- if m != nil {
- return m.HandleType
- }
- return 0
- }
- func (m *RepairStatisticSetRequest) GetTotalIncrease() int64 {
- if m != nil {
- return m.TotalIncrease
- }
- return 0
- }
- func (m *RepairStatisticSetRequest) GetFinishIncrease() int64 {
- if m != nil {
- return m.FinishIncrease
- }
- return 0
- }
- type RepairStatisticSetReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *RepairStatisticSetReply) Reset() { *m = RepairStatisticSetReply{} }
- func (m *RepairStatisticSetReply) String() string { return proto.CompactTextString(m) }
- func (*RepairStatisticSetReply) ProtoMessage() {}
- func (*RepairStatisticSetReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_5b775c37bba03b28, []int{46}
- }
- func (m *RepairStatisticSetReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_RepairStatisticSetReply.Unmarshal(m, b)
- }
- func (m *RepairStatisticSetReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_RepairStatisticSetReply.Marshal(b, m, deterministic)
- }
- func (m *RepairStatisticSetReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_RepairStatisticSetReply.Merge(m, src)
- }
- func (m *RepairStatisticSetReply) XXX_Size() int {
- return xxx_messageInfo_RepairStatisticSetReply.Size(m)
- }
- func (m *RepairStatisticSetReply) XXX_DiscardUnknown() {
- xxx_messageInfo_RepairStatisticSetReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_RepairStatisticSetReply proto.InternalMessageInfo
- func init() {
- proto.RegisterType((*BuildingAddRequest)(nil), "pb_v1.BuildingAddRequest")
- proto.RegisterType((*BuildingAddReply)(nil), "pb_v1.BuildingAddReply")
- proto.RegisterType((*BuildingUpdateRequest)(nil), "pb_v1.BuildingUpdateRequest")
- proto.RegisterType((*BuildingUpdateReply)(nil), "pb_v1.BuildingUpdateReply")
- proto.RegisterType((*BuildingDelRequest)(nil), "pb_v1.BuildingDelRequest")
- proto.RegisterType((*BuildingDelReply)(nil), "pb_v1.BuildingDelReply")
- proto.RegisterType((*BuildingListRequest)(nil), "pb_v1.BuildingListRequest")
- proto.RegisterType((*BuildingItem)(nil), "pb_v1.BuildingItem")
- proto.RegisterType((*BuildingListReply)(nil), "pb_v1.BuildingListReply")
- proto.RegisterType((*UnitAddRequest)(nil), "pb_v1.UnitAddRequest")
- proto.RegisterType((*UnitAddReply)(nil), "pb_v1.UnitAddReply")
- proto.RegisterType((*UnitUpdateRequest)(nil), "pb_v1.UnitUpdateRequest")
- proto.RegisterType((*UnitUpdateReply)(nil), "pb_v1.UnitUpdateReply")
- proto.RegisterType((*UnitDelRequest)(nil), "pb_v1.UnitDelRequest")
- proto.RegisterType((*UnitDelReply)(nil), "pb_v1.UnitDelReply")
- proto.RegisterType((*UnitListRequest)(nil), "pb_v1.UnitListRequest")
- proto.RegisterType((*UnitItem)(nil), "pb_v1.UnitItem")
- proto.RegisterType((*UnitListReply)(nil), "pb_v1.UnitListReply")
- proto.RegisterType((*HouseAddRequest)(nil), "pb_v1.HouseAddRequest")
- proto.RegisterType((*HouseAddReply)(nil), "pb_v1.HouseAddReply")
- proto.RegisterType((*HouseUpdateRequest)(nil), "pb_v1.HouseUpdateRequest")
- proto.RegisterType((*HouseUpdateReply)(nil), "pb_v1.HouseUpdateReply")
- proto.RegisterType((*HouseDelRequest)(nil), "pb_v1.HouseDelRequest")
- proto.RegisterType((*HouseDelReply)(nil), "pb_v1.HouseDelReply")
- proto.RegisterType((*HouseListRequest)(nil), "pb_v1.HouseListRequest")
- proto.RegisterType((*HouseItem)(nil), "pb_v1.HouseItem")
- proto.RegisterType((*HouseListReply)(nil), "pb_v1.HouseListReply")
- proto.RegisterType((*BatchBuildingItem)(nil), "pb_v1.BatchBuildingItem")
- proto.RegisterType((*BatchUnitItem)(nil), "pb_v1.BatchUnitItem")
- proto.RegisterType((*BatchHouseItem)(nil), "pb_v1.BatchHouseItem")
- proto.RegisterType((*BatchHouseAddRequest)(nil), "pb_v1.BatchHouseAddRequest")
- proto.RegisterType((*BatchHouseAddReply)(nil), "pb_v1.BatchHouseAddReply")
- proto.RegisterType((*HouseInfoRequest)(nil), "pb_v1.HouseInfoRequest")
- proto.RegisterType((*HouseInfoReply)(nil), "pb_v1.HouseInfoReply")
- proto.RegisterType((*HouseholdUserData)(nil), "pb_v1.HouseholdUserData")
- proto.RegisterType((*HouseholdSyncRequest)(nil), "pb_v1.HouseholdSyncRequest")
- proto.RegisterType((*HouseholdSyncReply)(nil), "pb_v1.HouseholdSyncReply")
- proto.RegisterType((*HouseholdChangeRequest)(nil), "pb_v1.HouseholdChangeRequest")
- proto.RegisterType((*HouseholdChangeReply)(nil), "pb_v1.HouseholdChangeReply")
- proto.RegisterType((*GardenChangeCompanyRequest)(nil), "pb_v1.GardenChangeCompanyRequest")
- proto.RegisterType((*GardenChangeCompanyReply)(nil), "pb_v1.GardenChangeCompanyReply")
- proto.RegisterType((*GardenHouseRentSyncRequest)(nil), "pb_v1.GardenHouseRentSyncRequest")
- proto.RegisterType((*GardenHouseRentSyncReply)(nil), "pb_v1.GardenHouseRentSyncReply")
- proto.RegisterType((*SystemMsgAddRequest)(nil), "pb_v1.SystemMsgAddRequest")
- proto.RegisterType((*SystemMsgAddReply)(nil), "pb_v1.SystemMsgAddReply")
- proto.RegisterType((*RepairStatisticSetRequest)(nil), "pb_v1.RepairStatisticSetRequest")
- proto.RegisterType((*RepairStatisticSetReply)(nil), "pb_v1.RepairStatisticSetReply")
- }
- func init() {
- proto.RegisterFile("garden.proto", fileDescriptor_5b775c37bba03b28)
- }
- var fileDescriptor_5b775c37bba03b28 = []byte{
- // 1897 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0xcd, 0x6e, 0x1c, 0xc5,
- 0x16, 0x56, 0xcf, 0x7f, 0x9f, 0xf9, 0xf1, 0xb8, 0x3d, 0xb6, 0xdb, 0xce, 0xcd, 0xb5, 0xd3, 0xc9,
- 0xbd, 0xb1, 0xae, 0x6e, 0x12, 0x12, 0x10, 0x12, 0x0b, 0x7e, 0x6c, 0x07, 0x91, 0x21, 0x01, 0xa4,
- 0x36, 0xde, 0xb0, 0x60, 0x68, 0x4f, 0x97, 0x3d, 0xa5, 0xcc, 0x74, 0x37, 0xdd, 0x35, 0x16, 0x93,
- 0x2d, 0x5b, 0xde, 0x80, 0x15, 0x4b, 0x84, 0x84, 0x10, 0x1b, 0x96, 0xac, 0x40, 0xac, 0x78, 0x01,
- 0x9e, 0x00, 0x29, 0x0f, 0xc0, 0x0e, 0x54, 0xa7, 0xaa, 0xfa, 0x6f, 0xc6, 0x93, 0x89, 0xe5, 0x08,
- 0x02, 0x2b, 0x4f, 0x9d, 0x3a, 0xdd, 0x5d, 0xe7, 0x3b, 0xdf, 0xf9, 0xce, 0xe9, 0x36, 0x34, 0x4e,
- 0x9c, 0xd0, 0x25, 0xde, 0xcd, 0x20, 0xf4, 0x99, 0x6f, 0x94, 0x83, 0xa3, 0xde, 0xe9, 0x6d, 0xeb,
- 0xb1, 0x06, 0xc6, 0xde, 0x98, 0x0e, 0x5d, 0xea, 0x9d, 0xec, 0xba, 0xae, 0x4d, 0x3e, 0x1e, 0x93,
- 0x88, 0x19, 0x97, 0x40, 0x17, 0xde, 0x3d, 0xea, 0x9a, 0xda, 0xb6, 0xb6, 0x53, 0xb4, 0x6b, 0xc2,
- 0xd0, 0x75, 0x8d, 0xeb, 0xb0, 0x74, 0x24, 0x2f, 0xe9, 0x79, 0xe3, 0xd1, 0x11, 0x09, 0xcd, 0xc2,
- 0xb6, 0xb6, 0xa3, 0xdb, 0x2d, 0x65, 0x7e, 0x17, 0xad, 0xc6, 0x55, 0x68, 0x26, 0x8e, 0xce, 0x88,
- 0x98, 0x45, 0x74, 0x6b, 0xc4, 0x6e, 0xce, 0x88, 0x64, 0x9c, 0x9c, 0x90, 0x38, 0x66, 0x69, 0x5b,
- 0xdb, 0xd1, 0x12, 0xa7, 0xdd, 0x90, 0x38, 0xc6, 0xff, 0xc1, 0x88, 0x9d, 0xc6, 0x11, 0x71, 0x85,
- 0x67, 0x19, 0x3d, 0xdb, 0x6a, 0xe7, 0x30, 0x22, 0x2e, 0x7a, 0x9b, 0x50, 0xed, 0xfb, 0xa3, 0x11,
- 0xf1, 0x98, 0x59, 0xc1, 0x27, 0xaa, 0xa5, 0x65, 0x41, 0x3b, 0x13, 0x6d, 0x30, 0x9c, 0x18, 0x2d,
- 0x28, 0xc4, 0x41, 0x16, 0xa8, 0x6b, 0xfd, 0xae, 0xc1, 0xaa, 0x72, 0x3a, 0x0c, 0x5c, 0x87, 0x11,
- 0x85, 0x4a, 0xce, 0xf3, 0x39, 0x06, 0x22, 0x9b, 0xe0, 0x6a, 0x36, 0xc1, 0xd6, 0x7d, 0x58, 0xc9,
- 0x03, 0xc0, 0x81, 0x7a, 0x09, 0x2a, 0x7e, 0x48, 0x4f, 0xa8, 0x87, 0x10, 0xd4, 0xef, 0xfc, 0xeb,
- 0x26, 0x72, 0xe8, 0xe6, 0x4c, 0xb0, 0x6c, 0xe9, 0x6b, 0xed, 0x26, 0x04, 0xbb, 0x4b, 0x86, 0x67,
- 0x41, 0x99, 0x39, 0x4f, 0x21, 0x77, 0x9e, 0x7b, 0x49, 0xd6, 0xf0, 0x16, 0xe7, 0x3f, 0xcc, 0x67,
- 0x5a, 0x12, 0xda, 0x03, 0x1a, 0x31, 0x75, 0x9c, 0x19, 0x99, 0xd4, 0x66, 0x66, 0xd2, 0x80, 0x52,
- 0xe0, 0x9c, 0x10, 0x79, 0x44, 0xfc, 0xcd, 0xcf, 0xce, 0xff, 0xf6, 0x22, 0xfa, 0x48, 0x64, 0xb6,
- 0x68, 0xd7, 0xb8, 0xe1, 0x80, 0x3e, 0x22, 0xd9, 0xc0, 0x4a, 0xb9, 0xc0, 0x7e, 0xd3, 0xa0, 0xa1,
- 0x8e, 0xd3, 0x65, 0x64, 0xf4, 0x77, 0x62, 0xd8, 0x65, 0x80, 0xb1, 0x47, 0x59, 0xaf, 0xef, 0x8f,
- 0x3d, 0x26, 0x29, 0xa6, 0x73, 0xcb, 0x3e, 0x37, 0x58, 0xc7, 0xb0, 0x9c, 0x4d, 0x04, 0x4f, 0x6a,
- 0x07, 0xca, 0xcc, 0x67, 0xce, 0x50, 0x22, 0x20, 0x16, 0x33, 0x31, 0xbf, 0x0e, 0xa5, 0x21, 0x8d,
- 0x98, 0x59, 0xdc, 0x2e, 0xee, 0xd4, 0xef, 0xac, 0xe4, 0x92, 0xcf, 0xb1, 0xb4, 0xd1, 0xc1, 0xfa,
- 0x49, 0x83, 0xd6, 0xa1, 0x47, 0xd9, 0xa2, 0xe2, 0xb6, 0x05, 0xf5, 0x38, 0xfc, 0x98, 0x8a, 0xa0,
- 0x4c, 0xc2, 0x01, 0xe3, 0x92, 0xe9, 0x10, 0xf9, 0xc6, 0x50, 0x65, 0x2a, 0x2e, 0x81, 0x2e, 0x1c,
- 0x78, 0x1a, 0x4a, 0x08, 0x4a, 0x0d, 0xb7, 0x79, 0x0a, 0xd4, 0xd5, 0x43, 0x67, 0x42, 0xc2, 0x08,
- 0x61, 0x95, 0x57, 0x3f, 0x40, 0x8b, 0xb1, 0x01, 0xb5, 0x81, 0x13, 0xf5, 0x86, 0xf4, 0x58, 0x20,
- 0x5a, 0xb3, 0xab, 0x03, 0x27, 0x7a, 0x40, 0x8f, 0x99, 0xf5, 0x6f, 0x68, 0xc4, 0x91, 0xcc, 0x12,
- 0xae, 0x5f, 0x34, 0x58, 0xe6, 0x0e, 0xf3, 0x45, 0x6b, 0x5e, 0xa5, 0x3d, 0xeb, 0xe0, 0x72, 0xe0,
- 0x56, 0xa6, 0xc0, 0x4d, 0x47, 0x5f, 0xcd, 0x46, 0xbf, 0x0f, 0x4b, 0xe9, 0xe0, 0x38, 0x00, 0x2f,
- 0xe4, 0x34, 0xc0, 0x94, 0x34, 0x98, 0x02, 0x21, 0xae, 0xff, 0x57, 0x05, 0x19, 0xce, 0x2b, 0x44,
- 0x6f, 0x88, 0x0c, 0xc4, 0x22, 0xf4, 0xf4, 0x07, 0xf8, 0x42, 0x13, 0x61, 0xa4, 0xc5, 0x27, 0x07,
- 0xba, 0x36, 0x05, 0xfa, 0x13, 0x39, 0xa9, 0x2a, 0xa4, 0x78, 0x96, 0x2a, 0x95, 0xe6, 0xa9, 0x52,
- 0x39, 0x17, 0xe5, 0xf7, 0x1a, 0xd4, 0xf8, 0x19, 0x67, 0x2a, 0xd2, 0x9f, 0x5d, 0x1f, 0x53, 0x42,
- 0x57, 0x99, 0x16, 0x3a, 0xeb, 0x43, 0x68, 0x26, 0x20, 0x3f, 0x9d, 0xb0, 0x5c, 0xcd, 0x08, 0xcb,
- 0x52, 0x2a, 0xa1, 0x29, 0x51, 0xf9, 0xa1, 0x00, 0x4b, 0xf7, 0xfc, 0x71, 0x44, 0x2e, 0x4c, 0x55,
- 0xd6, 0xa1, 0x8a, 0x71, 0x53, 0x57, 0x22, 0x56, 0xe1, 0xcb, 0xae, 0x6b, 0x5c, 0x81, 0xc6, 0x80,
- 0x3f, 0x49, 0xe1, 0x29, 0x00, 0xab, 0xa3, 0x4d, 0x02, 0xda, 0x81, 0x32, 0xc2, 0x25, 0xd1, 0x12,
- 0x0b, 0xae, 0xbf, 0xa1, 0xef, 0x8f, 0xa4, 0xfe, 0x8a, 0x52, 0xd3, 0xb9, 0x05, 0xf5, 0x97, 0x6f,
- 0x0f, 0x9c, 0xe1, 0x30, 0x2b, 0xcf, 0xdc, 0x92, 0x6c, 0xe3, 0x63, 0xd9, 0x24, 0x20, 0x66, 0x4d,
- 0x6e, 0x73, 0xcb, 0xfb, 0x93, 0x80, 0x24, 0xdb, 0xd8, 0x1c, 0x74, 0x6c, 0x0e, 0x62, 0x1b, 0xbb,
- 0xc2, 0x7f, 0x61, 0x49, 0x6c, 0x27, 0x0d, 0x04, 0xd0, 0xa7, 0x89, 0x66, 0xd5, 0x3d, 0xac, 0x2d,
- 0x68, 0x26, 0x30, 0xce, 0x92, 0xb4, 0xef, 0x0a, 0x60, 0xa0, 0xc7, 0x7c, 0x4d, 0x9b, 0xf1, 0xbc,
- 0xc2, 0x8c, 0xe7, 0x65, 0x73, 0x54, 0xcc, 0xe5, 0xe8, 0xb9, 0x44, 0x3a, 0xc5, 0x1b, 0x48, 0xf3,
- 0xc6, 0x7a, 0x13, 0xda, 0x19, 0xe0, 0x38, 0xba, 0xb7, 0x73, 0x72, 0xb5, 0x21, 0xd9, 0x3d, 0x8d,
- 0x70, 0xac, 0x57, 0xaf, 0x49, 0xa2, 0x9f, 0x57, 0x31, 0xf7, 0x64, 0x86, 0x63, 0xc9, 0x3c, 0xc7,
- 0x19, 0xbe, 0x29, 0xc8, 0x58, 0xd2, 0xa2, 0x99, 0xcf, 0x96, 0x36, 0x9d, 0xad, 0xf3, 0x17, 0x5d,
- 0x36, 0x27, 0x9c, 0x08, 0xe5, 0x74, 0x4e, 0x94, 0x6e, 0x94, 0xcf, 0x92, 0xdb, 0xca, 0x3c, 0xb9,
- 0xad, 0x9e, 0xc5, 0xbb, 0x88, 0x39, 0x6c, 0x1c, 0x21, 0x05, 0xca, 0x32, 0x92, 0x03, 0x34, 0x25,
- 0xbc, 0xd3, 0xd3, 0xbc, 0xe3, 0xcd, 0x12, 0x2f, 0x8c, 0x93, 0x5f, 0xc5, 0x75, 0xd7, 0xb5, 0x7e,
- 0x2d, 0x80, 0x8e, 0x90, 0x9d, 0x4f, 0xc3, 0xff, 0x91, 0x6a, 0x94, 0xdc, 0x06, 0xfb, 0x4a, 0x1d,
- 0x43, 0x13, 0xb7, 0xc1, 0xd6, 0xb4, 0x06, 0x15, 0x99, 0xa1, 0x06, 0x66, 0x48, 0xae, 0xac, 0x8f,
- 0xa0, 0x95, 0x62, 0xe7, 0xd3, 0x75, 0x9b, 0x6b, 0x99, 0x6e, 0xd3, 0x4e, 0xd7, 0x42, 0xaa, 0xdd,
- 0xfc, 0xac, 0xc1, 0xf2, 0x9e, 0xc3, 0xfa, 0x83, 0xcc, 0xbb, 0x42, 0x6a, 0xf4, 0xd6, 0xb2, 0xa3,
- 0xf7, 0x5f, 0xfd, 0xad, 0xc1, 0xfa, 0x56, 0x83, 0x26, 0x06, 0x14, 0x8f, 0x19, 0xe9, 0xc1, 0x4f,
- 0xcb, 0x0c, 0x7e, 0x8b, 0x47, 0xf3, 0x6c, 0x27, 0x0f, 0xde, 0x8b, 0x5a, 0x78, 0xe8, 0xa4, 0xb0,
- 0x66, 0x30, 0x4b, 0x9b, 0xc5, 0xac, 0x8b, 0x0b, 0xe1, 0x79, 0x2c, 0x40, 0xeb, 0x47, 0x0d, 0x3a,
- 0x09, 0x72, 0x8b, 0xce, 0x4c, 0x2f, 0x83, 0xae, 0xd0, 0x89, 0xcc, 0x02, 0x16, 0x88, 0x9a, 0xaf,
- 0xa7, 0x8a, 0xc1, 0x4e, 0x5c, 0x8d, 0xff, 0x41, 0x99, 0x03, 0x16, 0xc9, 0xa2, 0xea, 0xa4, 0xaf,
- 0x89, 0xe7, 0x38, 0xe1, 0x62, 0xdc, 0x80, 0x0a, 0x1e, 0x33, 0x32, 0x4b, 0xe8, 0xbc, 0x9a, 0x76,
- 0x4e, 0xca, 0x50, 0x3a, 0x59, 0x1d, 0x30, 0x72, 0x71, 0x04, 0xc3, 0x89, 0xf5, 0xb6, 0x6c, 0x4f,
- 0x5d, 0xef, 0xd8, 0x57, 0x91, 0xa5, 0xb5, 0x59, 0xcb, 0x68, 0xf3, 0xfc, 0x7e, 0xf9, 0x75, 0x45,
- 0xaa, 0x89, 0xb8, 0x19, 0x57, 0x93, 0x8b, 0xf9, 0x16, 0x77, 0x11, 0xcc, 0xda, 0x82, 0xba, 0x3c,
- 0x09, 0x56, 0x50, 0x19, 0x3d, 0x40, 0x98, 0xb0, 0x86, 0x36, 0xa1, 0x16, 0x84, 0xfe, 0x29, 0xf5,
- 0xfa, 0x6a, 0x2e, 0x8f, 0xd7, 0x5c, 0xfe, 0xfa, 0x94, 0x4d, 0x90, 0x5b, 0xba, 0x8d, 0xbf, 0xb9,
- 0x0d, 0x19, 0x53, 0x13, 0x36, 0xfe, 0x5b, 0xc8, 0x6c, 0x48, 0x08, 0x43, 0x1e, 0xe9, 0xb6, 0x5c,
- 0xf1, 0x7b, 0xf7, 0xfd, 0x11, 0x65, 0x8c, 0x10, 0x94, 0x6f, 0xdd, 0x8e, 0xd7, 0x09, 0xe5, 0xeb,
- 0x39, 0xca, 0xa7, 0x58, 0xd9, 0x58, 0xa0, 0x2d, 0x34, 0xcf, 0x68, 0x0b, 0xa9, 0xca, 0x69, 0xcd,
- 0xaf, 0x9c, 0xa5, 0xf9, 0x95, 0xd3, 0xce, 0x57, 0x8e, 0x05, 0x4d, 0x95, 0x5c, 0x8f, 0x1f, 0xc4,
- 0x5c, 0x46, 0xf1, 0x93, 0x38, 0x77, 0xbd, 0xc3, 0x08, 0x05, 0x58, 0xa1, 0xd8, 0xeb, 0xfb, 0x2e,
- 0x31, 0x0d, 0xa1, 0xd2, 0xca, 0xb8, 0xef, 0xbb, 0x38, 0x62, 0x70, 0x48, 0x85, 0xc3, 0x8a, 0xc4,
- 0x87, 0xb2, 0x89, 0xda, 0xe4, 0xf1, 0x89, 0xcd, 0x8e, 0xd8, 0xe4, 0x06, 0xdc, 0xdc, 0x82, 0xba,
- 0x80, 0x58, 0x6c, 0xaf, 0x8a, 0xac, 0x0a, 0x13, 0x3a, 0x5c, 0x85, 0xa6, 0x42, 0x5a, 0xb8, 0xac,
- 0x89, 0xe7, 0x2b, 0x23, 0x3a, 0xe5, 0xa7, 0x98, 0xf5, 0xe9, 0x29, 0x26, 0x37, 0x76, 0x98, 0xf3,
- 0xc6, 0x8e, 0x8d, 0xcc, 0xd8, 0x91, 0xee, 0x0e, 0x9b, 0xd9, 0xcf, 0x02, 0x9f, 0x17, 0x60, 0x19,
- 0x0b, 0x66, 0xe0, 0x0f, 0xdd, 0xc3, 0x88, 0x84, 0x77, 0x1d, 0xe6, 0x4c, 0x4d, 0x3c, 0x1d, 0x28,
- 0x07, 0x03, 0xdf, 0x23, 0xb2, 0x38, 0xc4, 0x82, 0xc3, 0xe2, 0xd1, 0xfe, 0xc3, 0x74, 0xeb, 0xab,
- 0x71, 0x03, 0x72, 0xf9, 0x12, 0xe8, 0x21, 0x71, 0x86, 0x99, 0x66, 0xc1, 0x0d, 0x6a, 0x93, 0xba,
- 0xaa, 0x52, 0x44, 0x1d, 0xd4, 0xa8, 0x2b, 0xcb, 0x64, 0x1d, 0xaa, 0xd4, 0x15, 0xf9, 0xae, 0x88,
- 0x49, 0x81, 0xba, 0x98, 0xec, 0x75, 0xa8, 0xfa, 0x41, 0x32, 0x04, 0xea, 0x76, 0x85, 0x2f, 0x45,
- 0x7c, 0x63, 0x8f, 0xfa, 0xb8, 0x23, 0x6a, 0xa1, 0x8a, 0xeb, 0xae, 0xcb, 0xcb, 0xc1, 0x39, 0x75,
- 0x98, 0x13, 0xaa, 0x72, 0x10, 0x2b, 0xe3, 0x1a, 0xb4, 0x82, 0xf1, 0xd1, 0x90, 0xf6, 0x7b, 0xea,
- 0x96, 0x20, 0x59, 0x81, 0xd6, 0xf7, 0xf0, 0xc6, 0xd6, 0x57, 0x65, 0xe8, 0xc4, 0xe8, 0x1c, 0x4c,
- 0xbc, 0xfe, 0x42, 0xca, 0x9b, 0x3a, 0x67, 0x21, 0x73, 0xce, 0x36, 0x14, 0xc7, 0xf1, 0x4c, 0xc8,
- 0x7f, 0x72, 0x7a, 0xf7, 0x43, 0xe2, 0x30, 0x5e, 0x41, 0x4c, 0x7e, 0x66, 0xd0, 0xa5, 0x65, 0x57,
- 0x7c, 0x04, 0xc4, 0x99, 0x1e, 0xb7, 0xcb, 0xf2, 0x23, 0xa0, 0xb0, 0xec, 0xe2, 0x29, 0xc6, 0x11,
- 0x09, 0xd3, 0x58, 0xd5, 0xb8, 0x01, 0xd1, 0x4a, 0x4b, 0x68, 0x35, 0x2b, 0xa1, 0x33, 0x54, 0xaf,
- 0xb6, 0x88, 0xea, 0xe9, 0x4f, 0x54, 0x3d, 0x78, 0xe2, 0x6b, 0x44, 0x7d, 0x1e, 0x6d, 0x1b, 0x19,
- 0xda, 0x6e, 0x42, 0xcd, 0x09, 0x02, 0xe2, 0xb9, 0xf4, 0x13, 0x94, 0x16, 0x5e, 0x75, 0x72, 0xcd,
- 0xf7, 0x8e, 0x09, 0x71, 0x8f, 0x9c, 0xfe, 0x43, 0xd4, 0x14, 0xdd, 0x8e, 0xd7, 0x09, 0x5b, 0x97,
- 0xd2, 0x6c, 0x35, 0xa0, 0x84, 0x5c, 0x6c, 0x0b, 0xb1, 0xe4, 0xbf, 0xd3, 0x54, 0x5b, 0xce, 0x50,
- 0x2d, 0x43, 0x50, 0x23, 0x47, 0xd0, 0x2d, 0xa8, 0x3b, 0x01, 0x57, 0x0f, 0x91, 0x96, 0x15, 0x11,
- 0x91, 0x32, 0xed, 0xaa, 0x57, 0xbc, 0x4e, 0x5c, 0x3e, 0xd3, 0x64, 0x5b, 0x9d, 0x26, 0x9b, 0xf1,
- 0x3a, 0xb4, 0x06, 0x8a, 0x6b, 0x5c, 0xcb, 0x42, 0x14, 0x8a, 0xa4, 0x6b, 0x4f, 0x95, 0xa9, 0x54,
- 0x5a, 0x65, 0xe2, 0xed, 0x35, 0x47, 0x56, 0xde, 0x5e, 0x1f, 0x6b, 0xb0, 0x16, 0x9b, 0xf7, 0x07,
- 0x8e, 0x77, 0x12, 0x7f, 0x07, 0xb8, 0x0c, 0x10, 0xb3, 0x38, 0x32, 0xb5, 0xed, 0x22, 0xa7, 0x97,
- 0xa2, 0x71, 0xa4, 0xe8, 0x5a, 0x48, 0xe8, 0xfa, 0xac, 0x91, 0x9d, 0x06, 0x6a, 0x65, 0x06, 0x50,
- 0x19, 0xdd, 0xe9, 0x64, 0x75, 0xc7, 0x5a, 0x4b, 0x55, 0xac, 0x8a, 0x96, 0xc3, 0x70, 0x1f, 0x36,
- 0xdf, 0xc2, 0xc8, 0x84, 0x71, 0xdf, 0x1f, 0x05, 0x8e, 0x37, 0x59, 0xa8, 0x9e, 0xdb, 0x50, 0xec,
- 0x27, 0x38, 0xf4, 0xa9, 0x6b, 0x1d, 0x82, 0x39, 0xf3, 0x66, 0x7c, 0xde, 0x78, 0x25, 0xf7, 0x86,
- 0x7e, 0x45, 0xa6, 0xef, 0xec, 0xa7, 0xc7, 0x6f, 0xea, 0x9f, 0x6a, 0xea, 0x90, 0x18, 0x82, 0x4d,
- 0x3c, 0x96, 0x16, 0x9d, 0x35, 0xa8, 0x50, 0x2f, 0x22, 0xa1, 0x1a, 0xf1, 0xe5, 0x6a, 0xfe, 0x27,
- 0xe9, 0x0e, 0x94, 0x5d, 0x87, 0x39, 0x11, 0xaa, 0x4e, 0xc3, 0x16, 0x0b, 0x5e, 0x3e, 0xd4, 0xe3,
- 0x3a, 0x13, 0xc5, 0x1f, 0x37, 0xd5, 0xda, 0xda, 0x54, 0xc1, 0xe5, 0x0e, 0xc1, 0x51, 0x0c, 0x61,
- 0xe5, 0x60, 0x12, 0x31, 0x32, 0x7a, 0x27, 0x5a, 0xf8, 0xff, 0x9d, 0xf8, 0xa2, 0xe5, 0x31, 0xfe,
- 0xa2, 0x55, 0x50, 0x2f, 0x5a, 0xb8, 0xc4, 0x99, 0x86, 0x37, 0xc4, 0xa2, 0x9c, 0x69, 0x78, 0x23,
- 0x94, 0xa4, 0x2b, 0xc5, 0xa4, 0xb3, 0x56, 0x60, 0x39, 0xfb, 0x4c, 0x7e, 0x90, 0x2f, 0x35, 0xd8,
- 0xb0, 0x49, 0xe0, 0xd0, 0x90, 0x77, 0x47, 0x1a, 0x31, 0xda, 0x3f, 0x20, 0x6c, 0xd1, 0x8f, 0x89,
- 0x03, 0xc7, 0x73, 0x87, 0x72, 0xa6, 0x28, 0x20, 0x3d, 0x41, 0x98, 0x90, 0xa2, 0xff, 0x81, 0x16,
- 0xbe, 0x72, 0xf6, 0x62, 0x88, 0x84, 0x62, 0x37, 0xd1, 0xda, 0x95, 0x46, 0xae, 0xa2, 0xc7, 0xd4,
- 0xa3, 0xd1, 0xa0, 0x97, 0x83, 0xb2, 0x25, 0xcc, 0xca, 0xd1, 0xda, 0x80, 0xf5, 0x59, 0x47, 0x0d,
- 0x86, 0x93, 0xbd, 0xcd, 0x0f, 0xcc, 0x20, 0xf4, 0x03, 0x12, 0xb2, 0xc9, 0x8d, 0xb8, 0x98, 0x6f,
- 0x05, 0x47, 0xb7, 0x4e, 0x6f, 0x1f, 0x55, 0xf0, 0x3f, 0xcd, 0x2f, 0xfe, 0x11, 0x00, 0x00, 0xff,
- 0xff, 0x95, 0x9a, 0xba, 0x03, 0x79, 0x1e, 0x00, 0x00,
- }
|