123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: common.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 SystemPermissionAddRequest struct {
- // 父code,若没有则填空
- Pcode string `protobuf:"bytes,1,opt,name=pcode,proto3" json:"pcode"`
- // 组件路径
- Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path"`
- // 权限名字
- Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
- // 小程序组件路径
- AppletePath string `protobuf:"bytes,4,opt,name=applete_path,json=appletePath,proto3" json:"applete_path"`
- // 路由
- Router string `protobuf:"bytes,5,opt,name=router,proto3" json:"router"`
- // 1 已发布 2 未发布
- Enable int32 `protobuf:"varint,6,opt,name=enable,proto3" json:"enable"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionAddRequest) Reset() { *m = SystemPermissionAddRequest{} }
- func (m *SystemPermissionAddRequest) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionAddRequest) ProtoMessage() {}
- func (*SystemPermissionAddRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{0}
- }
- func (m *SystemPermissionAddRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionAddRequest.Unmarshal(m, b)
- }
- func (m *SystemPermissionAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionAddRequest.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionAddRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionAddRequest.Merge(m, src)
- }
- func (m *SystemPermissionAddRequest) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionAddRequest.Size(m)
- }
- func (m *SystemPermissionAddRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionAddRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionAddRequest proto.InternalMessageInfo
- func (m *SystemPermissionAddRequest) GetPcode() string {
- if m != nil {
- return m.Pcode
- }
- return ""
- }
- func (m *SystemPermissionAddRequest) GetPath() string {
- if m != nil {
- return m.Path
- }
- return ""
- }
- func (m *SystemPermissionAddRequest) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *SystemPermissionAddRequest) GetAppletePath() string {
- if m != nil {
- return m.AppletePath
- }
- return ""
- }
- func (m *SystemPermissionAddRequest) GetRouter() string {
- if m != nil {
- return m.Router
- }
- return ""
- }
- func (m *SystemPermissionAddRequest) GetEnable() int32 {
- if m != nil {
- return m.Enable
- }
- return 0
- }
- type SystemPermissionAddReply struct {
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionAddReply) Reset() { *m = SystemPermissionAddReply{} }
- func (m *SystemPermissionAddReply) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionAddReply) ProtoMessage() {}
- func (*SystemPermissionAddReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{1}
- }
- func (m *SystemPermissionAddReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionAddReply.Unmarshal(m, b)
- }
- func (m *SystemPermissionAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionAddReply.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionAddReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionAddReply.Merge(m, src)
- }
- func (m *SystemPermissionAddReply) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionAddReply.Size(m)
- }
- func (m *SystemPermissionAddReply) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionAddReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionAddReply proto.InternalMessageInfo
- func (m *SystemPermissionAddReply) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- type SystemPermissionUpdateRequest struct {
- // 组件路径
- Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path"`
- // 权限名字
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
- // 小程序组件路径
- AppletePath string `protobuf:"bytes,3,opt,name=applete_path,json=appletePath,proto3" json:"applete_path"`
- // 路由
- Router string `protobuf:"bytes,4,opt,name=router,proto3" json:"router"`
- Code string `protobuf:"bytes,5,opt,name=code,proto3" json:"code"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionUpdateRequest) Reset() { *m = SystemPermissionUpdateRequest{} }
- func (m *SystemPermissionUpdateRequest) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionUpdateRequest) ProtoMessage() {}
- func (*SystemPermissionUpdateRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{2}
- }
- func (m *SystemPermissionUpdateRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionUpdateRequest.Unmarshal(m, b)
- }
- func (m *SystemPermissionUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionUpdateRequest.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionUpdateRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionUpdateRequest.Merge(m, src)
- }
- func (m *SystemPermissionUpdateRequest) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionUpdateRequest.Size(m)
- }
- func (m *SystemPermissionUpdateRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionUpdateRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionUpdateRequest proto.InternalMessageInfo
- func (m *SystemPermissionUpdateRequest) GetPath() string {
- if m != nil {
- return m.Path
- }
- return ""
- }
- func (m *SystemPermissionUpdateRequest) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *SystemPermissionUpdateRequest) GetAppletePath() string {
- if m != nil {
- return m.AppletePath
- }
- return ""
- }
- func (m *SystemPermissionUpdateRequest) GetRouter() string {
- if m != nil {
- return m.Router
- }
- return ""
- }
- func (m *SystemPermissionUpdateRequest) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- type SystemPermissionUpdateReply struct {
- Origin *SystemPermissionUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionUpdateReply) Reset() { *m = SystemPermissionUpdateReply{} }
- func (m *SystemPermissionUpdateReply) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionUpdateReply) ProtoMessage() {}
- func (*SystemPermissionUpdateReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{3}
- }
- func (m *SystemPermissionUpdateReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionUpdateReply.Unmarshal(m, b)
- }
- func (m *SystemPermissionUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionUpdateReply.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionUpdateReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionUpdateReply.Merge(m, src)
- }
- func (m *SystemPermissionUpdateReply) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionUpdateReply.Size(m)
- }
- func (m *SystemPermissionUpdateReply) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionUpdateReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionUpdateReply proto.InternalMessageInfo
- func (m *SystemPermissionUpdateReply) GetOrigin() *SystemPermissionUpdateRequest {
- if m != nil {
- return m.Origin
- }
- return nil
- }
- type SystemPermissionDelRequest struct {
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionDelRequest) Reset() { *m = SystemPermissionDelRequest{} }
- func (m *SystemPermissionDelRequest) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionDelRequest) ProtoMessage() {}
- func (*SystemPermissionDelRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{4}
- }
- func (m *SystemPermissionDelRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionDelRequest.Unmarshal(m, b)
- }
- func (m *SystemPermissionDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionDelRequest.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionDelRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionDelRequest.Merge(m, src)
- }
- func (m *SystemPermissionDelRequest) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionDelRequest.Size(m)
- }
- func (m *SystemPermissionDelRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionDelRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionDelRequest proto.InternalMessageInfo
- func (m *SystemPermissionDelRequest) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- type SystemPermissionDelReply struct {
- Origin []*SystemPermissionUpdateRequest `protobuf:"bytes,1,rep,name=origin,proto3" json:"origin"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionDelReply) Reset() { *m = SystemPermissionDelReply{} }
- func (m *SystemPermissionDelReply) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionDelReply) ProtoMessage() {}
- func (*SystemPermissionDelReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{5}
- }
- func (m *SystemPermissionDelReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionDelReply.Unmarshal(m, b)
- }
- func (m *SystemPermissionDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionDelReply.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionDelReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionDelReply.Merge(m, src)
- }
- func (m *SystemPermissionDelReply) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionDelReply.Size(m)
- }
- func (m *SystemPermissionDelReply) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionDelReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionDelReply proto.InternalMessageInfo
- func (m *SystemPermissionDelReply) GetOrigin() []*SystemPermissionUpdateRequest {
- if m != nil {
- return m.Origin
- }
- return nil
- }
- type SystemPermissionListRequest struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionListRequest) Reset() { *m = SystemPermissionListRequest{} }
- func (m *SystemPermissionListRequest) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionListRequest) ProtoMessage() {}
- func (*SystemPermissionListRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{6}
- }
- func (m *SystemPermissionListRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionListRequest.Unmarshal(m, b)
- }
- func (m *SystemPermissionListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionListRequest.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionListRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionListRequest.Merge(m, src)
- }
- func (m *SystemPermissionListRequest) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionListRequest.Size(m)
- }
- func (m *SystemPermissionListRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionListRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionListRequest proto.InternalMessageInfo
- type SystemPermissionItem struct {
- // 父code,若没有则填空
- Pcode string `protobuf:"bytes,1,opt,name=pcode,proto3" json:"pcode"`
- // 组件路径
- Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path"`
- // 权限名字
- Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
- // 小程序组件路径
- AppletePath string `protobuf:"bytes,4,opt,name=applete_path,json=appletePath,proto3" json:"applete_path"`
- // 路由
- Router string `protobuf:"bytes,5,opt,name=router,proto3" json:"router"`
- Code string `protobuf:"bytes,6,opt,name=code,proto3" json:"code"`
- // 1 已发布 2 未发布
- Enable int32 `protobuf:"varint,7,opt,name=enable,proto3" json:"enable"`
- CreatedAt int64 `protobuf:"varint,8,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
- EnableAt int64 `protobuf:"varint,9,opt,name=enable_at,json=enableAt,proto3" json:"enable_at"`
- Level int64 `protobuf:"varint,10,opt,name=level,proto3" json:"level"`
- Childs []*SystemPermissionItem `protobuf:"bytes,11,rep,name=childs,proto3" json:"childs"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionItem) Reset() { *m = SystemPermissionItem{} }
- func (m *SystemPermissionItem) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionItem) ProtoMessage() {}
- func (*SystemPermissionItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{7}
- }
- func (m *SystemPermissionItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionItem.Unmarshal(m, b)
- }
- func (m *SystemPermissionItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionItem.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionItem.Merge(m, src)
- }
- func (m *SystemPermissionItem) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionItem.Size(m)
- }
- func (m *SystemPermissionItem) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionItem proto.InternalMessageInfo
- func (m *SystemPermissionItem) GetPcode() string {
- if m != nil {
- return m.Pcode
- }
- return ""
- }
- func (m *SystemPermissionItem) GetPath() string {
- if m != nil {
- return m.Path
- }
- return ""
- }
- func (m *SystemPermissionItem) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *SystemPermissionItem) GetAppletePath() string {
- if m != nil {
- return m.AppletePath
- }
- return ""
- }
- func (m *SystemPermissionItem) GetRouter() string {
- if m != nil {
- return m.Router
- }
- return ""
- }
- func (m *SystemPermissionItem) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- func (m *SystemPermissionItem) GetEnable() int32 {
- if m != nil {
- return m.Enable
- }
- return 0
- }
- func (m *SystemPermissionItem) GetCreatedAt() int64 {
- if m != nil {
- return m.CreatedAt
- }
- return 0
- }
- func (m *SystemPermissionItem) GetEnableAt() int64 {
- if m != nil {
- return m.EnableAt
- }
- return 0
- }
- func (m *SystemPermissionItem) GetLevel() int64 {
- if m != nil {
- return m.Level
- }
- return 0
- }
- func (m *SystemPermissionItem) GetChilds() []*SystemPermissionItem {
- if m != nil {
- return m.Childs
- }
- return nil
- }
- type SystemPermissionListReply struct {
- List []*SystemPermissionItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionListReply) Reset() { *m = SystemPermissionListReply{} }
- func (m *SystemPermissionListReply) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionListReply) ProtoMessage() {}
- func (*SystemPermissionListReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{8}
- }
- func (m *SystemPermissionListReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionListReply.Unmarshal(m, b)
- }
- func (m *SystemPermissionListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionListReply.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionListReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionListReply.Merge(m, src)
- }
- func (m *SystemPermissionListReply) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionListReply.Size(m)
- }
- func (m *SystemPermissionListReply) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionListReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionListReply proto.InternalMessageInfo
- func (m *SystemPermissionListReply) GetList() []*SystemPermissionItem {
- if m != nil {
- return m.List
- }
- return nil
- }
- type SystemPermissionNotTreeItem struct {
- // 父code,若没有则填空
- Pcode string `protobuf:"bytes,1,opt,name=pcode,proto3" json:"pcode"`
- // 组件路径
- Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path"`
- // 权限名字
- Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
- // 小程序组件路径
- AppletePath string `protobuf:"bytes,4,opt,name=applete_path,json=appletePath,proto3" json:"applete_path"`
- // 路由
- Router string `protobuf:"bytes,5,opt,name=router,proto3" json:"router"`
- Code string `protobuf:"bytes,6,opt,name=code,proto3" json:"code"`
- // 1 已发布 2 未发布
- Enable int32 `protobuf:"varint,7,opt,name=enable,proto3" json:"enable"`
- CreatedAt int64 `protobuf:"varint,8,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
- EnableAt int64 `protobuf:"varint,9,opt,name=enable_at,json=enableAt,proto3" json:"enable_at"`
- Level int64 `protobuf:"varint,10,opt,name=level,proto3" json:"level"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionNotTreeItem) Reset() { *m = SystemPermissionNotTreeItem{} }
- func (m *SystemPermissionNotTreeItem) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionNotTreeItem) ProtoMessage() {}
- func (*SystemPermissionNotTreeItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{9}
- }
- func (m *SystemPermissionNotTreeItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionNotTreeItem.Unmarshal(m, b)
- }
- func (m *SystemPermissionNotTreeItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionNotTreeItem.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionNotTreeItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionNotTreeItem.Merge(m, src)
- }
- func (m *SystemPermissionNotTreeItem) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionNotTreeItem.Size(m)
- }
- func (m *SystemPermissionNotTreeItem) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionNotTreeItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionNotTreeItem proto.InternalMessageInfo
- func (m *SystemPermissionNotTreeItem) GetPcode() string {
- if m != nil {
- return m.Pcode
- }
- return ""
- }
- func (m *SystemPermissionNotTreeItem) GetPath() string {
- if m != nil {
- return m.Path
- }
- return ""
- }
- func (m *SystemPermissionNotTreeItem) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *SystemPermissionNotTreeItem) GetAppletePath() string {
- if m != nil {
- return m.AppletePath
- }
- return ""
- }
- func (m *SystemPermissionNotTreeItem) GetRouter() string {
- if m != nil {
- return m.Router
- }
- return ""
- }
- func (m *SystemPermissionNotTreeItem) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- func (m *SystemPermissionNotTreeItem) GetEnable() int32 {
- if m != nil {
- return m.Enable
- }
- return 0
- }
- func (m *SystemPermissionNotTreeItem) GetCreatedAt() int64 {
- if m != nil {
- return m.CreatedAt
- }
- return 0
- }
- func (m *SystemPermissionNotTreeItem) GetEnableAt() int64 {
- if m != nil {
- return m.EnableAt
- }
- return 0
- }
- func (m *SystemPermissionNotTreeItem) GetLevel() int64 {
- if m != nil {
- return m.Level
- }
- return 0
- }
- // 平铺权限列表
- type SystemPermissionsNotTreeRequest struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionsNotTreeRequest) Reset() { *m = SystemPermissionsNotTreeRequest{} }
- func (m *SystemPermissionsNotTreeRequest) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionsNotTreeRequest) ProtoMessage() {}
- func (*SystemPermissionsNotTreeRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{10}
- }
- func (m *SystemPermissionsNotTreeRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionsNotTreeRequest.Unmarshal(m, b)
- }
- func (m *SystemPermissionsNotTreeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionsNotTreeRequest.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionsNotTreeRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionsNotTreeRequest.Merge(m, src)
- }
- func (m *SystemPermissionsNotTreeRequest) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionsNotTreeRequest.Size(m)
- }
- func (m *SystemPermissionsNotTreeRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionsNotTreeRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionsNotTreeRequest proto.InternalMessageInfo
- type SystemPermissionsNotTreeReply struct {
- List []*SystemPermissionNotTreeItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *SystemPermissionsNotTreeReply) Reset() { *m = SystemPermissionsNotTreeReply{} }
- func (m *SystemPermissionsNotTreeReply) String() string { return proto.CompactTextString(m) }
- func (*SystemPermissionsNotTreeReply) ProtoMessage() {}
- func (*SystemPermissionsNotTreeReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{11}
- }
- func (m *SystemPermissionsNotTreeReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_SystemPermissionsNotTreeReply.Unmarshal(m, b)
- }
- func (m *SystemPermissionsNotTreeReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_SystemPermissionsNotTreeReply.Marshal(b, m, deterministic)
- }
- func (m *SystemPermissionsNotTreeReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_SystemPermissionsNotTreeReply.Merge(m, src)
- }
- func (m *SystemPermissionsNotTreeReply) XXX_Size() int {
- return xxx_messageInfo_SystemPermissionsNotTreeReply.Size(m)
- }
- func (m *SystemPermissionsNotTreeReply) XXX_DiscardUnknown() {
- xxx_messageInfo_SystemPermissionsNotTreeReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_SystemPermissionsNotTreeReply proto.InternalMessageInfo
- func (m *SystemPermissionsNotTreeReply) GetList() []*SystemPermissionNotTreeItem {
- if m != nil {
- return m.List
- }
- return nil
- }
- type ProvinceCityAreaRequest struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ProvinceCityAreaRequest) Reset() { *m = ProvinceCityAreaRequest{} }
- func (m *ProvinceCityAreaRequest) String() string { return proto.CompactTextString(m) }
- func (*ProvinceCityAreaRequest) ProtoMessage() {}
- func (*ProvinceCityAreaRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{12}
- }
- func (m *ProvinceCityAreaRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ProvinceCityAreaRequest.Unmarshal(m, b)
- }
- func (m *ProvinceCityAreaRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ProvinceCityAreaRequest.Marshal(b, m, deterministic)
- }
- func (m *ProvinceCityAreaRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ProvinceCityAreaRequest.Merge(m, src)
- }
- func (m *ProvinceCityAreaRequest) XXX_Size() int {
- return xxx_messageInfo_ProvinceCityAreaRequest.Size(m)
- }
- func (m *ProvinceCityAreaRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_ProvinceCityAreaRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_ProvinceCityAreaRequest proto.InternalMessageInfo
- type ProvinceData struct {
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ProvinceData) Reset() { *m = ProvinceData{} }
- func (m *ProvinceData) String() string { return proto.CompactTextString(m) }
- func (*ProvinceData) ProtoMessage() {}
- func (*ProvinceData) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{13}
- }
- func (m *ProvinceData) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ProvinceData.Unmarshal(m, b)
- }
- func (m *ProvinceData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ProvinceData.Marshal(b, m, deterministic)
- }
- func (m *ProvinceData) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ProvinceData.Merge(m, src)
- }
- func (m *ProvinceData) XXX_Size() int {
- return xxx_messageInfo_ProvinceData.Size(m)
- }
- func (m *ProvinceData) XXX_DiscardUnknown() {
- xxx_messageInfo_ProvinceData.DiscardUnknown(m)
- }
- var xxx_messageInfo_ProvinceData proto.InternalMessageInfo
- func (m *ProvinceData) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- func (m *ProvinceData) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- type CityData struct {
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
- ProvinceCode string `protobuf:"bytes,3,opt,name=province_code,json=provinceCode,proto3" json:"province_code"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CityData) Reset() { *m = CityData{} }
- func (m *CityData) String() string { return proto.CompactTextString(m) }
- func (*CityData) ProtoMessage() {}
- func (*CityData) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{14}
- }
- func (m *CityData) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CityData.Unmarshal(m, b)
- }
- func (m *CityData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CityData.Marshal(b, m, deterministic)
- }
- func (m *CityData) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CityData.Merge(m, src)
- }
- func (m *CityData) XXX_Size() int {
- return xxx_messageInfo_CityData.Size(m)
- }
- func (m *CityData) XXX_DiscardUnknown() {
- xxx_messageInfo_CityData.DiscardUnknown(m)
- }
- var xxx_messageInfo_CityData proto.InternalMessageInfo
- func (m *CityData) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- func (m *CityData) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *CityData) GetProvinceCode() string {
- if m != nil {
- return m.ProvinceCode
- }
- return ""
- }
- type AreaData struct {
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
- ProvinceCode string `protobuf:"bytes,3,opt,name=province_code,json=provinceCode,proto3" json:"province_code"`
- CityCode string `protobuf:"bytes,4,opt,name=city_code,json=cityCode,proto3" json:"city_code"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *AreaData) Reset() { *m = AreaData{} }
- func (m *AreaData) String() string { return proto.CompactTextString(m) }
- func (*AreaData) ProtoMessage() {}
- func (*AreaData) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{15}
- }
- func (m *AreaData) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_AreaData.Unmarshal(m, b)
- }
- func (m *AreaData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_AreaData.Marshal(b, m, deterministic)
- }
- func (m *AreaData) XXX_Merge(src proto.Message) {
- xxx_messageInfo_AreaData.Merge(m, src)
- }
- func (m *AreaData) XXX_Size() int {
- return xxx_messageInfo_AreaData.Size(m)
- }
- func (m *AreaData) XXX_DiscardUnknown() {
- xxx_messageInfo_AreaData.DiscardUnknown(m)
- }
- var xxx_messageInfo_AreaData proto.InternalMessageInfo
- func (m *AreaData) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- func (m *AreaData) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *AreaData) GetProvinceCode() string {
- if m != nil {
- return m.ProvinceCode
- }
- return ""
- }
- func (m *AreaData) GetCityCode() string {
- if m != nil {
- return m.CityCode
- }
- return ""
- }
- type ProvinceCityAreaReply struct {
- ProvinceList []*ProvinceData `protobuf:"bytes,1,rep,name=province_list,json=provinceList,proto3" json:"province_list"`
- CityList []*CityData `protobuf:"bytes,2,rep,name=city_list,json=cityList,proto3" json:"city_list"`
- AreaList []*AreaData `protobuf:"bytes,3,rep,name=area_list,json=areaList,proto3" json:"area_list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ProvinceCityAreaReply) Reset() { *m = ProvinceCityAreaReply{} }
- func (m *ProvinceCityAreaReply) String() string { return proto.CompactTextString(m) }
- func (*ProvinceCityAreaReply) ProtoMessage() {}
- func (*ProvinceCityAreaReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{16}
- }
- func (m *ProvinceCityAreaReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ProvinceCityAreaReply.Unmarshal(m, b)
- }
- func (m *ProvinceCityAreaReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ProvinceCityAreaReply.Marshal(b, m, deterministic)
- }
- func (m *ProvinceCityAreaReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ProvinceCityAreaReply.Merge(m, src)
- }
- func (m *ProvinceCityAreaReply) XXX_Size() int {
- return xxx_messageInfo_ProvinceCityAreaReply.Size(m)
- }
- func (m *ProvinceCityAreaReply) XXX_DiscardUnknown() {
- xxx_messageInfo_ProvinceCityAreaReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_ProvinceCityAreaReply proto.InternalMessageInfo
- func (m *ProvinceCityAreaReply) GetProvinceList() []*ProvinceData {
- if m != nil {
- return m.ProvinceList
- }
- return nil
- }
- func (m *ProvinceCityAreaReply) GetCityList() []*CityData {
- if m != nil {
- return m.CityList
- }
- return nil
- }
- func (m *ProvinceCityAreaReply) GetAreaList() []*AreaData {
- if m != nil {
- return m.AreaList
- }
- return nil
- }
- type StreetCommitteeRequest struct {
- AreaCode string `protobuf:"bytes,1,opt,name=area_code,json=areaCode,proto3" json:"area_code"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *StreetCommitteeRequest) Reset() { *m = StreetCommitteeRequest{} }
- func (m *StreetCommitteeRequest) String() string { return proto.CompactTextString(m) }
- func (*StreetCommitteeRequest) ProtoMessage() {}
- func (*StreetCommitteeRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{17}
- }
- func (m *StreetCommitteeRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_StreetCommitteeRequest.Unmarshal(m, b)
- }
- func (m *StreetCommitteeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_StreetCommitteeRequest.Marshal(b, m, deterministic)
- }
- func (m *StreetCommitteeRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_StreetCommitteeRequest.Merge(m, src)
- }
- func (m *StreetCommitteeRequest) XXX_Size() int {
- return xxx_messageInfo_StreetCommitteeRequest.Size(m)
- }
- func (m *StreetCommitteeRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_StreetCommitteeRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_StreetCommitteeRequest proto.InternalMessageInfo
- func (m *StreetCommitteeRequest) GetAreaCode() string {
- if m != nil {
- return m.AreaCode
- }
- return ""
- }
- type StreetData struct {
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *StreetData) Reset() { *m = StreetData{} }
- func (m *StreetData) String() string { return proto.CompactTextString(m) }
- func (*StreetData) ProtoMessage() {}
- func (*StreetData) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{18}
- }
- func (m *StreetData) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_StreetData.Unmarshal(m, b)
- }
- func (m *StreetData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_StreetData.Marshal(b, m, deterministic)
- }
- func (m *StreetData) XXX_Merge(src proto.Message) {
- xxx_messageInfo_StreetData.Merge(m, src)
- }
- func (m *StreetData) XXX_Size() int {
- return xxx_messageInfo_StreetData.Size(m)
- }
- func (m *StreetData) XXX_DiscardUnknown() {
- xxx_messageInfo_StreetData.DiscardUnknown(m)
- }
- var xxx_messageInfo_StreetData proto.InternalMessageInfo
- func (m *StreetData) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- func (m *StreetData) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- type CommitteeData struct {
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
- StreetCode string `protobuf:"bytes,3,opt,name=street_code,json=streetCode,proto3" json:"street_code"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CommitteeData) Reset() { *m = CommitteeData{} }
- func (m *CommitteeData) String() string { return proto.CompactTextString(m) }
- func (*CommitteeData) ProtoMessage() {}
- func (*CommitteeData) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{19}
- }
- func (m *CommitteeData) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CommitteeData.Unmarshal(m, b)
- }
- func (m *CommitteeData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CommitteeData.Marshal(b, m, deterministic)
- }
- func (m *CommitteeData) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CommitteeData.Merge(m, src)
- }
- func (m *CommitteeData) XXX_Size() int {
- return xxx_messageInfo_CommitteeData.Size(m)
- }
- func (m *CommitteeData) XXX_DiscardUnknown() {
- xxx_messageInfo_CommitteeData.DiscardUnknown(m)
- }
- var xxx_messageInfo_CommitteeData proto.InternalMessageInfo
- func (m *CommitteeData) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- func (m *CommitteeData) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *CommitteeData) GetStreetCode() string {
- if m != nil {
- return m.StreetCode
- }
- return ""
- }
- type StreetCommitteeReply struct {
- StreetList []*StreetData `protobuf:"bytes,1,rep,name=street_list,json=streetList,proto3" json:"street_list"`
- CommitteeList []*CommitteeData `protobuf:"bytes,2,rep,name=committee_list,json=committeeList,proto3" json:"committee_list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *StreetCommitteeReply) Reset() { *m = StreetCommitteeReply{} }
- func (m *StreetCommitteeReply) String() string { return proto.CompactTextString(m) }
- func (*StreetCommitteeReply) ProtoMessage() {}
- func (*StreetCommitteeReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{20}
- }
- func (m *StreetCommitteeReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_StreetCommitteeReply.Unmarshal(m, b)
- }
- func (m *StreetCommitteeReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_StreetCommitteeReply.Marshal(b, m, deterministic)
- }
- func (m *StreetCommitteeReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_StreetCommitteeReply.Merge(m, src)
- }
- func (m *StreetCommitteeReply) XXX_Size() int {
- return xxx_messageInfo_StreetCommitteeReply.Size(m)
- }
- func (m *StreetCommitteeReply) XXX_DiscardUnknown() {
- xxx_messageInfo_StreetCommitteeReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_StreetCommitteeReply proto.InternalMessageInfo
- func (m *StreetCommitteeReply) GetStreetList() []*StreetData {
- if m != nil {
- return m.StreetList
- }
- return nil
- }
- func (m *StreetCommitteeReply) GetCommitteeList() []*CommitteeData {
- if m != nil {
- return m.CommitteeList
- }
- return nil
- }
- type OssObjAddRequest struct {
- InList []string `protobuf:"bytes,1,rep,name=in_list,json=inList,proto3" json:"in_list"`
- OutList []string `protobuf:"bytes,2,rep,name=out_list,json=outList,proto3" json:"out_list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *OssObjAddRequest) Reset() { *m = OssObjAddRequest{} }
- func (m *OssObjAddRequest) String() string { return proto.CompactTextString(m) }
- func (*OssObjAddRequest) ProtoMessage() {}
- func (*OssObjAddRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{21}
- }
- func (m *OssObjAddRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_OssObjAddRequest.Unmarshal(m, b)
- }
- func (m *OssObjAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_OssObjAddRequest.Marshal(b, m, deterministic)
- }
- func (m *OssObjAddRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_OssObjAddRequest.Merge(m, src)
- }
- func (m *OssObjAddRequest) XXX_Size() int {
- return xxx_messageInfo_OssObjAddRequest.Size(m)
- }
- func (m *OssObjAddRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_OssObjAddRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_OssObjAddRequest proto.InternalMessageInfo
- func (m *OssObjAddRequest) GetInList() []string {
- if m != nil {
- return m.InList
- }
- return nil
- }
- func (m *OssObjAddRequest) GetOutList() []string {
- if m != nil {
- return m.OutList
- }
- return nil
- }
- type OssObjAddReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *OssObjAddReply) Reset() { *m = OssObjAddReply{} }
- func (m *OssObjAddReply) String() string { return proto.CompactTextString(m) }
- func (*OssObjAddReply) ProtoMessage() {}
- func (*OssObjAddReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{22}
- }
- func (m *OssObjAddReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_OssObjAddReply.Unmarshal(m, b)
- }
- func (m *OssObjAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_OssObjAddReply.Marshal(b, m, deterministic)
- }
- func (m *OssObjAddReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_OssObjAddReply.Merge(m, src)
- }
- func (m *OssObjAddReply) XXX_Size() int {
- return xxx_messageInfo_OssObjAddReply.Size(m)
- }
- func (m *OssObjAddReply) XXX_DiscardUnknown() {
- xxx_messageInfo_OssObjAddReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_OssObjAddReply proto.InternalMessageInfo
- type OssObjDelNotExistRequest struct {
- ObjUrl string `protobuf:"bytes,1,opt,name=obj_url,json=objUrl,proto3" json:"obj_url"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *OssObjDelNotExistRequest) Reset() { *m = OssObjDelNotExistRequest{} }
- func (m *OssObjDelNotExistRequest) String() string { return proto.CompactTextString(m) }
- func (*OssObjDelNotExistRequest) ProtoMessage() {}
- func (*OssObjDelNotExistRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{23}
- }
- func (m *OssObjDelNotExistRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_OssObjDelNotExistRequest.Unmarshal(m, b)
- }
- func (m *OssObjDelNotExistRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_OssObjDelNotExistRequest.Marshal(b, m, deterministic)
- }
- func (m *OssObjDelNotExistRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_OssObjDelNotExistRequest.Merge(m, src)
- }
- func (m *OssObjDelNotExistRequest) XXX_Size() int {
- return xxx_messageInfo_OssObjDelNotExistRequest.Size(m)
- }
- func (m *OssObjDelNotExistRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_OssObjDelNotExistRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_OssObjDelNotExistRequest proto.InternalMessageInfo
- func (m *OssObjDelNotExistRequest) GetObjUrl() string {
- if m != nil {
- return m.ObjUrl
- }
- return ""
- }
- type OssObjDelNotExistReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *OssObjDelNotExistReply) Reset() { *m = OssObjDelNotExistReply{} }
- func (m *OssObjDelNotExistReply) String() string { return proto.CompactTextString(m) }
- func (*OssObjDelNotExistReply) ProtoMessage() {}
- func (*OssObjDelNotExistReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{24}
- }
- func (m *OssObjDelNotExistReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_OssObjDelNotExistReply.Unmarshal(m, b)
- }
- func (m *OssObjDelNotExistReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_OssObjDelNotExistReply.Marshal(b, m, deterministic)
- }
- func (m *OssObjDelNotExistReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_OssObjDelNotExistReply.Merge(m, src)
- }
- func (m *OssObjDelNotExistReply) XXX_Size() int {
- return xxx_messageInfo_OssObjDelNotExistReply.Size(m)
- }
- func (m *OssObjDelNotExistReply) XXX_DiscardUnknown() {
- xxx_messageInfo_OssObjDelNotExistReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_OssObjDelNotExistReply proto.InternalMessageInfo
- type ApplicationListRequest struct {
- Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
- PageSize int64 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
- Enable int32 `protobuf:"varint,3,opt,name=enable,proto3" json:"enable"`
- PackageId int64 `protobuf:"varint,4,opt,name=package_id,json=packageId,proto3" json:"package_id"`
- ExcludeIds []int64 `protobuf:"varint,5,rep,packed,name=exclude_ids,json=excludeIds,proto3" json:"exclude_ids"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ApplicationListRequest) Reset() { *m = ApplicationListRequest{} }
- func (m *ApplicationListRequest) String() string { return proto.CompactTextString(m) }
- func (*ApplicationListRequest) ProtoMessage() {}
- func (*ApplicationListRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{25}
- }
- func (m *ApplicationListRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ApplicationListRequest.Unmarshal(m, b)
- }
- func (m *ApplicationListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ApplicationListRequest.Marshal(b, m, deterministic)
- }
- func (m *ApplicationListRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ApplicationListRequest.Merge(m, src)
- }
- func (m *ApplicationListRequest) XXX_Size() int {
- return xxx_messageInfo_ApplicationListRequest.Size(m)
- }
- func (m *ApplicationListRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_ApplicationListRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_ApplicationListRequest proto.InternalMessageInfo
- func (m *ApplicationListRequest) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *ApplicationListRequest) GetPageSize() int64 {
- if m != nil {
- return m.PageSize
- }
- return 0
- }
- func (m *ApplicationListRequest) GetEnable() int32 {
- if m != nil {
- return m.Enable
- }
- return 0
- }
- func (m *ApplicationListRequest) GetPackageId() int64 {
- if m != nil {
- return m.PackageId
- }
- return 0
- }
- func (m *ApplicationListRequest) GetExcludeIds() []int64 {
- if m != nil {
- return m.ExcludeIds
- }
- return nil
- }
- type ApplicationItem struct {
- Icon string `protobuf:"bytes,1,opt,name=icon,proto3" json:"icon"`
- Desc string `protobuf:"bytes,2,opt,name=desc,proto3" json:"desc"`
- Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
- Content string `protobuf:"bytes,4,opt,name=content,proto3" json:"content"`
- Price int64 `protobuf:"varint,5,opt,name=price,proto3" json:"price"`
- Enable bool `protobuf:"varint,6,opt,name=enable,proto3" json:"enable"`
- Id int64 `protobuf:"varint,7,opt,name=id,proto3" json:"id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ApplicationItem) Reset() { *m = ApplicationItem{} }
- func (m *ApplicationItem) String() string { return proto.CompactTextString(m) }
- func (*ApplicationItem) ProtoMessage() {}
- func (*ApplicationItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{26}
- }
- func (m *ApplicationItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ApplicationItem.Unmarshal(m, b)
- }
- func (m *ApplicationItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ApplicationItem.Marshal(b, m, deterministic)
- }
- func (m *ApplicationItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ApplicationItem.Merge(m, src)
- }
- func (m *ApplicationItem) XXX_Size() int {
- return xxx_messageInfo_ApplicationItem.Size(m)
- }
- func (m *ApplicationItem) XXX_DiscardUnknown() {
- xxx_messageInfo_ApplicationItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_ApplicationItem proto.InternalMessageInfo
- func (m *ApplicationItem) GetIcon() string {
- if m != nil {
- return m.Icon
- }
- return ""
- }
- func (m *ApplicationItem) GetDesc() string {
- if m != nil {
- return m.Desc
- }
- return ""
- }
- func (m *ApplicationItem) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *ApplicationItem) GetContent() string {
- if m != nil {
- return m.Content
- }
- return ""
- }
- func (m *ApplicationItem) GetPrice() int64 {
- if m != nil {
- return m.Price
- }
- return 0
- }
- func (m *ApplicationItem) GetEnable() bool {
- if m != nil {
- return m.Enable
- }
- return false
- }
- func (m *ApplicationItem) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- type ApplicationListReply struct {
- Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
- Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
- List []*ApplicationItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ApplicationListReply) Reset() { *m = ApplicationListReply{} }
- func (m *ApplicationListReply) String() string { return proto.CompactTextString(m) }
- func (*ApplicationListReply) ProtoMessage() {}
- func (*ApplicationListReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{27}
- }
- func (m *ApplicationListReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ApplicationListReply.Unmarshal(m, b)
- }
- func (m *ApplicationListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ApplicationListReply.Marshal(b, m, deterministic)
- }
- func (m *ApplicationListReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ApplicationListReply.Merge(m, src)
- }
- func (m *ApplicationListReply) XXX_Size() int {
- return xxx_messageInfo_ApplicationListReply.Size(m)
- }
- func (m *ApplicationListReply) XXX_DiscardUnknown() {
- xxx_messageInfo_ApplicationListReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_ApplicationListReply proto.InternalMessageInfo
- func (m *ApplicationListReply) GetTotal() int64 {
- if m != nil {
- return m.Total
- }
- return 0
- }
- func (m *ApplicationListReply) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *ApplicationListReply) GetList() []*ApplicationItem {
- if m != nil {
- return m.List
- }
- return nil
- }
- type ApplicationPermissionItem struct {
- // 父code,若没有则填空
- Pcode string `protobuf:"bytes,1,opt,name=pcode,proto3" json:"pcode"`
- // 小程序组件路径
- AppletePath string `protobuf:"bytes,2,opt,name=applete_path,json=appletePath,proto3" json:"applete_path"`
- // 权限名字
- Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
- // 是否拥有该权限
- Selected bool `protobuf:"varint,4,opt,name=selected,proto3" json:"selected"`
- // 路由
- Router string `protobuf:"bytes,5,opt,name=router,proto3" json:"router"`
- Code string `protobuf:"bytes,6,opt,name=code,proto3" json:"code"`
- // 组件路径
- Path string `protobuf:"bytes,7,opt,name=path,proto3" json:"path"`
- Childs []*ApplicationPermissionItem `protobuf:"bytes,8,rep,name=childs,proto3" json:"childs"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ApplicationPermissionItem) Reset() { *m = ApplicationPermissionItem{} }
- func (m *ApplicationPermissionItem) String() string { return proto.CompactTextString(m) }
- func (*ApplicationPermissionItem) ProtoMessage() {}
- func (*ApplicationPermissionItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{28}
- }
- func (m *ApplicationPermissionItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ApplicationPermissionItem.Unmarshal(m, b)
- }
- func (m *ApplicationPermissionItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ApplicationPermissionItem.Marshal(b, m, deterministic)
- }
- func (m *ApplicationPermissionItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ApplicationPermissionItem.Merge(m, src)
- }
- func (m *ApplicationPermissionItem) XXX_Size() int {
- return xxx_messageInfo_ApplicationPermissionItem.Size(m)
- }
- func (m *ApplicationPermissionItem) XXX_DiscardUnknown() {
- xxx_messageInfo_ApplicationPermissionItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_ApplicationPermissionItem proto.InternalMessageInfo
- func (m *ApplicationPermissionItem) GetPcode() string {
- if m != nil {
- return m.Pcode
- }
- return ""
- }
- func (m *ApplicationPermissionItem) GetAppletePath() string {
- if m != nil {
- return m.AppletePath
- }
- return ""
- }
- func (m *ApplicationPermissionItem) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *ApplicationPermissionItem) GetSelected() bool {
- if m != nil {
- return m.Selected
- }
- return false
- }
- func (m *ApplicationPermissionItem) GetRouter() string {
- if m != nil {
- return m.Router
- }
- return ""
- }
- func (m *ApplicationPermissionItem) GetCode() string {
- if m != nil {
- return m.Code
- }
- return ""
- }
- func (m *ApplicationPermissionItem) GetPath() string {
- if m != nil {
- return m.Path
- }
- return ""
- }
- func (m *ApplicationPermissionItem) GetChilds() []*ApplicationPermissionItem {
- if m != nil {
- return m.Childs
- }
- return nil
- }
- type ApplicationPermissionsRequest 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 *ApplicationPermissionsRequest) Reset() { *m = ApplicationPermissionsRequest{} }
- func (m *ApplicationPermissionsRequest) String() string { return proto.CompactTextString(m) }
- func (*ApplicationPermissionsRequest) ProtoMessage() {}
- func (*ApplicationPermissionsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{29}
- }
- func (m *ApplicationPermissionsRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ApplicationPermissionsRequest.Unmarshal(m, b)
- }
- func (m *ApplicationPermissionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ApplicationPermissionsRequest.Marshal(b, m, deterministic)
- }
- func (m *ApplicationPermissionsRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ApplicationPermissionsRequest.Merge(m, src)
- }
- func (m *ApplicationPermissionsRequest) XXX_Size() int {
- return xxx_messageInfo_ApplicationPermissionsRequest.Size(m)
- }
- func (m *ApplicationPermissionsRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_ApplicationPermissionsRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_ApplicationPermissionsRequest proto.InternalMessageInfo
- func (m *ApplicationPermissionsRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- type ApplicationPermissionsReply struct {
- List []*ApplicationPermissionItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ApplicationPermissionsReply) Reset() { *m = ApplicationPermissionsReply{} }
- func (m *ApplicationPermissionsReply) String() string { return proto.CompactTextString(m) }
- func (*ApplicationPermissionsReply) ProtoMessage() {}
- func (*ApplicationPermissionsReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{30}
- }
- func (m *ApplicationPermissionsReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ApplicationPermissionsReply.Unmarshal(m, b)
- }
- func (m *ApplicationPermissionsReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ApplicationPermissionsReply.Marshal(b, m, deterministic)
- }
- func (m *ApplicationPermissionsReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ApplicationPermissionsReply.Merge(m, src)
- }
- func (m *ApplicationPermissionsReply) XXX_Size() int {
- return xxx_messageInfo_ApplicationPermissionsReply.Size(m)
- }
- func (m *ApplicationPermissionsReply) XXX_DiscardUnknown() {
- xxx_messageInfo_ApplicationPermissionsReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_ApplicationPermissionsReply proto.InternalMessageInfo
- func (m *ApplicationPermissionsReply) GetList() []*ApplicationPermissionItem {
- if m != nil {
- return m.List
- }
- return nil
- }
- type PackageItem struct {
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"`
- Desc string `protobuf:"bytes,2,opt,name=desc,proto3" json:"desc"`
- Price int64 `protobuf:"varint,3,opt,name=price,proto3" json:"price"`
- HouseCount int64 `protobuf:"varint,4,opt,name=house_count,json=houseCount,proto3" json:"house_count"`
- Id int64 `protobuf:"varint,5,opt,name=id,proto3" json:"id"`
- Enable bool `protobuf:"varint,6,opt,name=enable,proto3" json:"enable"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *PackageItem) Reset() { *m = PackageItem{} }
- func (m *PackageItem) String() string { return proto.CompactTextString(m) }
- func (*PackageItem) ProtoMessage() {}
- func (*PackageItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{31}
- }
- func (m *PackageItem) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_PackageItem.Unmarshal(m, b)
- }
- func (m *PackageItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_PackageItem.Marshal(b, m, deterministic)
- }
- func (m *PackageItem) XXX_Merge(src proto.Message) {
- xxx_messageInfo_PackageItem.Merge(m, src)
- }
- func (m *PackageItem) XXX_Size() int {
- return xxx_messageInfo_PackageItem.Size(m)
- }
- func (m *PackageItem) XXX_DiscardUnknown() {
- xxx_messageInfo_PackageItem.DiscardUnknown(m)
- }
- var xxx_messageInfo_PackageItem proto.InternalMessageInfo
- func (m *PackageItem) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *PackageItem) GetDesc() string {
- if m != nil {
- return m.Desc
- }
- return ""
- }
- func (m *PackageItem) GetPrice() int64 {
- if m != nil {
- return m.Price
- }
- return 0
- }
- func (m *PackageItem) GetHouseCount() int64 {
- if m != nil {
- return m.HouseCount
- }
- return 0
- }
- func (m *PackageItem) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *PackageItem) GetEnable() bool {
- if m != nil {
- return m.Enable
- }
- return false
- }
- type PackageListRequest struct {
- Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
- PageSize int64 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
- Enable int32 `protobuf:"varint,3,opt,name=enable,proto3" json:"enable"`
- ExcludeIds []int64 `protobuf:"varint,4,rep,packed,name=exclude_ids,json=excludeIds,proto3" json:"exclude_ids"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *PackageListRequest) Reset() { *m = PackageListRequest{} }
- func (m *PackageListRequest) String() string { return proto.CompactTextString(m) }
- func (*PackageListRequest) ProtoMessage() {}
- func (*PackageListRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{32}
- }
- func (m *PackageListRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_PackageListRequest.Unmarshal(m, b)
- }
- func (m *PackageListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_PackageListRequest.Marshal(b, m, deterministic)
- }
- func (m *PackageListRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_PackageListRequest.Merge(m, src)
- }
- func (m *PackageListRequest) XXX_Size() int {
- return xxx_messageInfo_PackageListRequest.Size(m)
- }
- func (m *PackageListRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_PackageListRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_PackageListRequest proto.InternalMessageInfo
- func (m *PackageListRequest) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *PackageListRequest) GetPageSize() int64 {
- if m != nil {
- return m.PageSize
- }
- return 0
- }
- func (m *PackageListRequest) GetEnable() int32 {
- if m != nil {
- return m.Enable
- }
- return 0
- }
- func (m *PackageListRequest) GetExcludeIds() []int64 {
- if m != nil {
- return m.ExcludeIds
- }
- return nil
- }
- type PackageListReply struct {
- Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
- Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
- List []*PackageItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *PackageListReply) Reset() { *m = PackageListReply{} }
- func (m *PackageListReply) String() string { return proto.CompactTextString(m) }
- func (*PackageListReply) ProtoMessage() {}
- func (*PackageListReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{33}
- }
- func (m *PackageListReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_PackageListReply.Unmarshal(m, b)
- }
- func (m *PackageListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_PackageListReply.Marshal(b, m, deterministic)
- }
- func (m *PackageListReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_PackageListReply.Merge(m, src)
- }
- func (m *PackageListReply) XXX_Size() int {
- return xxx_messageInfo_PackageListReply.Size(m)
- }
- func (m *PackageListReply) XXX_DiscardUnknown() {
- xxx_messageInfo_PackageListReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_PackageListReply proto.InternalMessageInfo
- func (m *PackageListReply) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *PackageListReply) GetTotal() int64 {
- if m != nil {
- return m.Total
- }
- return 0
- }
- func (m *PackageListReply) GetList() []*PackageItem {
- if m != nil {
- return m.List
- }
- return nil
- }
- type ApplicationInfoRequest 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 *ApplicationInfoRequest) Reset() { *m = ApplicationInfoRequest{} }
- func (m *ApplicationInfoRequest) String() string { return proto.CompactTextString(m) }
- func (*ApplicationInfoRequest) ProtoMessage() {}
- func (*ApplicationInfoRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{34}
- }
- func (m *ApplicationInfoRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ApplicationInfoRequest.Unmarshal(m, b)
- }
- func (m *ApplicationInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ApplicationInfoRequest.Marshal(b, m, deterministic)
- }
- func (m *ApplicationInfoRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ApplicationInfoRequest.Merge(m, src)
- }
- func (m *ApplicationInfoRequest) XXX_Size() int {
- return xxx_messageInfo_ApplicationInfoRequest.Size(m)
- }
- func (m *ApplicationInfoRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_ApplicationInfoRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_ApplicationInfoRequest proto.InternalMessageInfo
- func (m *ApplicationInfoRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- type ApplicationInfo struct {
- Icon string `protobuf:"bytes,1,opt,name=icon,proto3" json:"icon"`
- Desc string `protobuf:"bytes,2,opt,name=desc,proto3" json:"desc"`
- Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
- Content string `protobuf:"bytes,4,opt,name=content,proto3" json:"content"`
- Price int64 `protobuf:"varint,5,opt,name=price,proto3" json:"price"`
- Enable bool `protobuf:"varint,6,opt,name=enable,proto3" json:"enable"`
- Id int64 `protobuf:"varint,7,opt,name=id,proto3" json:"id"`
- Permissions []*SystemPermissionNotTreeItem `protobuf:"bytes,8,rep,name=permissions,proto3" json:"permissions"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ApplicationInfo) Reset() { *m = ApplicationInfo{} }
- func (m *ApplicationInfo) String() string { return proto.CompactTextString(m) }
- func (*ApplicationInfo) ProtoMessage() {}
- func (*ApplicationInfo) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{35}
- }
- func (m *ApplicationInfo) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ApplicationInfo.Unmarshal(m, b)
- }
- func (m *ApplicationInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ApplicationInfo.Marshal(b, m, deterministic)
- }
- func (m *ApplicationInfo) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ApplicationInfo.Merge(m, src)
- }
- func (m *ApplicationInfo) XXX_Size() int {
- return xxx_messageInfo_ApplicationInfo.Size(m)
- }
- func (m *ApplicationInfo) XXX_DiscardUnknown() {
- xxx_messageInfo_ApplicationInfo.DiscardUnknown(m)
- }
- var xxx_messageInfo_ApplicationInfo proto.InternalMessageInfo
- func (m *ApplicationInfo) GetIcon() string {
- if m != nil {
- return m.Icon
- }
- return ""
- }
- func (m *ApplicationInfo) GetDesc() string {
- if m != nil {
- return m.Desc
- }
- return ""
- }
- func (m *ApplicationInfo) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *ApplicationInfo) GetContent() string {
- if m != nil {
- return m.Content
- }
- return ""
- }
- func (m *ApplicationInfo) GetPrice() int64 {
- if m != nil {
- return m.Price
- }
- return 0
- }
- func (m *ApplicationInfo) GetEnable() bool {
- if m != nil {
- return m.Enable
- }
- return false
- }
- func (m *ApplicationInfo) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *ApplicationInfo) GetPermissions() []*SystemPermissionNotTreeItem {
- if m != nil {
- return m.Permissions
- }
- return nil
- }
- type ApplicationInfoReply struct {
- Info *ApplicationInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ApplicationInfoReply) Reset() { *m = ApplicationInfoReply{} }
- func (m *ApplicationInfoReply) String() string { return proto.CompactTextString(m) }
- func (*ApplicationInfoReply) ProtoMessage() {}
- func (*ApplicationInfoReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{36}
- }
- func (m *ApplicationInfoReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ApplicationInfoReply.Unmarshal(m, b)
- }
- func (m *ApplicationInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ApplicationInfoReply.Marshal(b, m, deterministic)
- }
- func (m *ApplicationInfoReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ApplicationInfoReply.Merge(m, src)
- }
- func (m *ApplicationInfoReply) XXX_Size() int {
- return xxx_messageInfo_ApplicationInfoReply.Size(m)
- }
- func (m *ApplicationInfoReply) XXX_DiscardUnknown() {
- xxx_messageInfo_ApplicationInfoReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_ApplicationInfoReply proto.InternalMessageInfo
- func (m *ApplicationInfoReply) GetInfo() *ApplicationInfo {
- if m != nil {
- return m.Info
- }
- return nil
- }
- type PackageInfoRequest 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 *PackageInfoRequest) Reset() { *m = PackageInfoRequest{} }
- func (m *PackageInfoRequest) String() string { return proto.CompactTextString(m) }
- func (*PackageInfoRequest) ProtoMessage() {}
- func (*PackageInfoRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{37}
- }
- func (m *PackageInfoRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_PackageInfoRequest.Unmarshal(m, b)
- }
- func (m *PackageInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_PackageInfoRequest.Marshal(b, m, deterministic)
- }
- func (m *PackageInfoRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_PackageInfoRequest.Merge(m, src)
- }
- func (m *PackageInfoRequest) XXX_Size() int {
- return xxx_messageInfo_PackageInfoRequest.Size(m)
- }
- func (m *PackageInfoRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_PackageInfoRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_PackageInfoRequest proto.InternalMessageInfo
- func (m *PackageInfoRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- type PackageInfoReply struct {
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"`
- Desc string `protobuf:"bytes,2,opt,name=desc,proto3" json:"desc"`
- Price int64 `protobuf:"varint,3,opt,name=price,proto3" json:"price"`
- HouseCount int64 `protobuf:"varint,4,opt,name=house_count,json=houseCount,proto3" json:"house_count"`
- Id int64 `protobuf:"varint,5,opt,name=id,proto3" json:"id"`
- Enable bool `protobuf:"varint,6,opt,name=enable,proto3" json:"enable"`
- Applications []*ApplicationInfo `protobuf:"bytes,7,rep,name=applications,proto3" json:"applications"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *PackageInfoReply) Reset() { *m = PackageInfoReply{} }
- func (m *PackageInfoReply) String() string { return proto.CompactTextString(m) }
- func (*PackageInfoReply) ProtoMessage() {}
- func (*PackageInfoReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{38}
- }
- func (m *PackageInfoReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_PackageInfoReply.Unmarshal(m, b)
- }
- func (m *PackageInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_PackageInfoReply.Marshal(b, m, deterministic)
- }
- func (m *PackageInfoReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_PackageInfoReply.Merge(m, src)
- }
- func (m *PackageInfoReply) XXX_Size() int {
- return xxx_messageInfo_PackageInfoReply.Size(m)
- }
- func (m *PackageInfoReply) XXX_DiscardUnknown() {
- xxx_messageInfo_PackageInfoReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_PackageInfoReply proto.InternalMessageInfo
- func (m *PackageInfoReply) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *PackageInfoReply) GetDesc() string {
- if m != nil {
- return m.Desc
- }
- return ""
- }
- func (m *PackageInfoReply) GetPrice() int64 {
- if m != nil {
- return m.Price
- }
- return 0
- }
- func (m *PackageInfoReply) GetHouseCount() int64 {
- if m != nil {
- return m.HouseCount
- }
- return 0
- }
- func (m *PackageInfoReply) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func (m *PackageInfoReply) GetEnable() bool {
- if m != nil {
- return m.Enable
- }
- return false
- }
- func (m *PackageInfoReply) GetApplications() []*ApplicationInfo {
- if m != nil {
- return m.Applications
- }
- return nil
- }
- type MsgPackageInfoRequest 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 *MsgPackageInfoRequest) Reset() { *m = MsgPackageInfoRequest{} }
- func (m *MsgPackageInfoRequest) String() string { return proto.CompactTextString(m) }
- func (*MsgPackageInfoRequest) ProtoMessage() {}
- func (*MsgPackageInfoRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{39}
- }
- func (m *MsgPackageInfoRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_MsgPackageInfoRequest.Unmarshal(m, b)
- }
- func (m *MsgPackageInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_MsgPackageInfoRequest.Marshal(b, m, deterministic)
- }
- func (m *MsgPackageInfoRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_MsgPackageInfoRequest.Merge(m, src)
- }
- func (m *MsgPackageInfoRequest) XXX_Size() int {
- return xxx_messageInfo_MsgPackageInfoRequest.Size(m)
- }
- func (m *MsgPackageInfoRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_MsgPackageInfoRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_MsgPackageInfoRequest proto.InternalMessageInfo
- func (m *MsgPackageInfoRequest) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- type MsgPackageInfoReply struct {
- // 套餐名称
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"`
- // 套餐描述
- Comment string `protobuf:"bytes,2,opt,name=comment,proto3" json:"comment"`
- // 套餐价格
- Price int64 `protobuf:"varint,3,opt,name=price,proto3" json:"price"`
- // 短信条数
- MsgCount int64 `protobuf:"varint,4,opt,name=msg_count,json=msgCount,proto3" json:"msg_count"`
- Id int64 `protobuf:"varint,5,opt,name=id,proto3" json:"id"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *MsgPackageInfoReply) Reset() { *m = MsgPackageInfoReply{} }
- func (m *MsgPackageInfoReply) String() string { return proto.CompactTextString(m) }
- func (*MsgPackageInfoReply) ProtoMessage() {}
- func (*MsgPackageInfoReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_555bd8c177793206, []int{40}
- }
- func (m *MsgPackageInfoReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_MsgPackageInfoReply.Unmarshal(m, b)
- }
- func (m *MsgPackageInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_MsgPackageInfoReply.Marshal(b, m, deterministic)
- }
- func (m *MsgPackageInfoReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_MsgPackageInfoReply.Merge(m, src)
- }
- func (m *MsgPackageInfoReply) XXX_Size() int {
- return xxx_messageInfo_MsgPackageInfoReply.Size(m)
- }
- func (m *MsgPackageInfoReply) XXX_DiscardUnknown() {
- xxx_messageInfo_MsgPackageInfoReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_MsgPackageInfoReply proto.InternalMessageInfo
- func (m *MsgPackageInfoReply) GetName() string {
- if m != nil {
- return m.Name
- }
- return ""
- }
- func (m *MsgPackageInfoReply) GetComment() string {
- if m != nil {
- return m.Comment
- }
- return ""
- }
- func (m *MsgPackageInfoReply) GetPrice() int64 {
- if m != nil {
- return m.Price
- }
- return 0
- }
- func (m *MsgPackageInfoReply) GetMsgCount() int64 {
- if m != nil {
- return m.MsgCount
- }
- return 0
- }
- func (m *MsgPackageInfoReply) GetId() int64 {
- if m != nil {
- return m.Id
- }
- return 0
- }
- func init() {
- proto.RegisterType((*SystemPermissionAddRequest)(nil), "pb_v1.SystemPermissionAddRequest")
- proto.RegisterType((*SystemPermissionAddReply)(nil), "pb_v1.SystemPermissionAddReply")
- proto.RegisterType((*SystemPermissionUpdateRequest)(nil), "pb_v1.SystemPermissionUpdateRequest")
- proto.RegisterType((*SystemPermissionUpdateReply)(nil), "pb_v1.SystemPermissionUpdateReply")
- proto.RegisterType((*SystemPermissionDelRequest)(nil), "pb_v1.SystemPermissionDelRequest")
- proto.RegisterType((*SystemPermissionDelReply)(nil), "pb_v1.SystemPermissionDelReply")
- proto.RegisterType((*SystemPermissionListRequest)(nil), "pb_v1.SystemPermissionListRequest")
- proto.RegisterType((*SystemPermissionItem)(nil), "pb_v1.SystemPermissionItem")
- proto.RegisterType((*SystemPermissionListReply)(nil), "pb_v1.SystemPermissionListReply")
- proto.RegisterType((*SystemPermissionNotTreeItem)(nil), "pb_v1.SystemPermissionNotTreeItem")
- proto.RegisterType((*SystemPermissionsNotTreeRequest)(nil), "pb_v1.SystemPermissionsNotTreeRequest")
- proto.RegisterType((*SystemPermissionsNotTreeReply)(nil), "pb_v1.SystemPermissionsNotTreeReply")
- proto.RegisterType((*ProvinceCityAreaRequest)(nil), "pb_v1.ProvinceCityAreaRequest")
- proto.RegisterType((*ProvinceData)(nil), "pb_v1.ProvinceData")
- proto.RegisterType((*CityData)(nil), "pb_v1.CityData")
- proto.RegisterType((*AreaData)(nil), "pb_v1.AreaData")
- proto.RegisterType((*ProvinceCityAreaReply)(nil), "pb_v1.ProvinceCityAreaReply")
- proto.RegisterType((*StreetCommitteeRequest)(nil), "pb_v1.StreetCommitteeRequest")
- proto.RegisterType((*StreetData)(nil), "pb_v1.StreetData")
- proto.RegisterType((*CommitteeData)(nil), "pb_v1.CommitteeData")
- proto.RegisterType((*StreetCommitteeReply)(nil), "pb_v1.StreetCommitteeReply")
- proto.RegisterType((*OssObjAddRequest)(nil), "pb_v1.OssObjAddRequest")
- proto.RegisterType((*OssObjAddReply)(nil), "pb_v1.OssObjAddReply")
- proto.RegisterType((*OssObjDelNotExistRequest)(nil), "pb_v1.OssObjDelNotExistRequest")
- proto.RegisterType((*OssObjDelNotExistReply)(nil), "pb_v1.OssObjDelNotExistReply")
- proto.RegisterType((*ApplicationListRequest)(nil), "pb_v1.ApplicationListRequest")
- proto.RegisterType((*ApplicationItem)(nil), "pb_v1.ApplicationItem")
- proto.RegisterType((*ApplicationListReply)(nil), "pb_v1.ApplicationListReply")
- proto.RegisterType((*ApplicationPermissionItem)(nil), "pb_v1.ApplicationPermissionItem")
- proto.RegisterType((*ApplicationPermissionsRequest)(nil), "pb_v1.ApplicationPermissionsRequest")
- proto.RegisterType((*ApplicationPermissionsReply)(nil), "pb_v1.ApplicationPermissionsReply")
- proto.RegisterType((*PackageItem)(nil), "pb_v1.PackageItem")
- proto.RegisterType((*PackageListRequest)(nil), "pb_v1.PackageListRequest")
- proto.RegisterType((*PackageListReply)(nil), "pb_v1.PackageListReply")
- proto.RegisterType((*ApplicationInfoRequest)(nil), "pb_v1.ApplicationInfoRequest")
- proto.RegisterType((*ApplicationInfo)(nil), "pb_v1.ApplicationInfo")
- proto.RegisterType((*ApplicationInfoReply)(nil), "pb_v1.ApplicationInfoReply")
- proto.RegisterType((*PackageInfoRequest)(nil), "pb_v1.PackageInfoRequest")
- proto.RegisterType((*PackageInfoReply)(nil), "pb_v1.PackageInfoReply")
- proto.RegisterType((*MsgPackageInfoRequest)(nil), "pb_v1.MsgPackageInfoRequest")
- proto.RegisterType((*MsgPackageInfoReply)(nil), "pb_v1.MsgPackageInfoReply")
- }
- func init() {
- proto.RegisterFile("common.proto", fileDescriptor_555bd8c177793206)
- }
- var fileDescriptor_555bd8c177793206 = []byte{
- // 1257 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0x5f, 0x6f, 0xdc, 0x44,
- 0x10, 0x97, 0xcf, 0xf7, 0xc7, 0x37, 0x97, 0xa4, 0xc1, 0xbd, 0x24, 0x4e, 0xa3, 0x28, 0xa9, 0xa9,
- 0x20, 0xaa, 0x20, 0xa1, 0x4d, 0xa9, 0x2a, 0xe0, 0x25, 0x4d, 0x40, 0x8a, 0x54, 0xda, 0xc8, 0xa1,
- 0x6a, 0x05, 0x0f, 0x27, 0x9f, 0xbd, 0x49, 0x1c, 0x6c, 0xaf, 0xf1, 0xee, 0x45, 0xbd, 0x3e, 0xf0,
- 0x08, 0x5f, 0x00, 0xf1, 0xce, 0x03, 0x8f, 0xfd, 0x12, 0x7c, 0x07, 0x3e, 0x05, 0xdf, 0x01, 0xa1,
- 0xfd, 0xe7, 0x5b, 0x9f, 0x7d, 0x21, 0x91, 0x40, 0x54, 0xe2, 0x29, 0xde, 0xd9, 0x99, 0x9d, 0x99,
- 0xdf, 0xfc, 0x66, 0x76, 0x2f, 0x30, 0x17, 0xe0, 0x24, 0xc1, 0xe9, 0x76, 0x96, 0x63, 0x8a, 0xed,
- 0x56, 0x36, 0x1c, 0x5c, 0xdc, 0x73, 0xdf, 0x18, 0x70, 0xeb, 0x78, 0x4c, 0x28, 0x4a, 0x8e, 0x50,
- 0x9e, 0x44, 0x84, 0x44, 0x38, 0xdd, 0x0b, 0x43, 0x0f, 0x7d, 0x37, 0x42, 0x84, 0xda, 0x7d, 0x68,
- 0x65, 0x01, 0x0e, 0x91, 0x63, 0x6c, 0x1a, 0x5b, 0x5d, 0x4f, 0x2c, 0x6c, 0x1b, 0x9a, 0x99, 0x4f,
- 0xcf, 0x9c, 0x06, 0x17, 0xf2, 0x6f, 0x26, 0x4b, 0xfd, 0x04, 0x39, 0xa6, 0x90, 0xb1, 0x6f, 0xfb,
- 0x36, 0xcc, 0xf9, 0x59, 0x16, 0x23, 0x8a, 0x06, 0x5c, 0xbf, 0xc9, 0xf7, 0x7a, 0x52, 0x76, 0xc4,
- 0xcc, 0x96, 0xa1, 0x9d, 0xe3, 0x11, 0x45, 0xb9, 0xd3, 0xe2, 0x9b, 0x72, 0xc5, 0xe4, 0x28, 0xf5,
- 0x87, 0x31, 0x72, 0xda, 0x9b, 0xc6, 0x56, 0xcb, 0x93, 0x2b, 0x77, 0x1b, 0x9c, 0xda, 0x70, 0xb3,
- 0x78, 0xcc, 0x42, 0xd0, 0x62, 0xe5, 0xdf, 0xee, 0xcf, 0x06, 0xac, 0x4f, 0x1b, 0x3c, 0xcf, 0x42,
- 0x9f, 0x22, 0x95, 0xa2, 0x4a, 0xc6, 0xa8, 0x49, 0xa6, 0x71, 0x49, 0x32, 0xe6, 0x65, 0xc9, 0x34,
- 0x4b, 0xc9, 0xa8, 0xc0, 0x5a, 0x5a, 0x60, 0xdf, 0xc0, 0xda, 0xac, 0xb8, 0x58, 0x2e, 0x9f, 0x41,
- 0x1b, 0xe7, 0xd1, 0x69, 0x94, 0xf2, 0xb8, 0x7a, 0xf7, 0xef, 0x6c, 0xf3, 0x7a, 0x6d, 0x5f, 0x9a,
- 0x8b, 0x27, 0x6d, 0xdc, 0x8f, 0xaa, 0x45, 0x3d, 0x40, 0xb1, 0x96, 0x71, 0x05, 0xa7, 0x97, 0x55,
- 0x5c, 0xb9, 0xc5, 0x74, 0x2c, 0xe6, 0xb5, 0x63, 0x59, 0xaf, 0x26, 0xfa, 0x24, 0x22, 0x54, 0xaa,
- 0xb9, 0xbf, 0x35, 0xa0, 0x3f, 0xbd, 0x7f, 0x48, 0x51, 0xf2, 0xdf, 0x51, 0x4f, 0xc1, 0xd3, 0x9e,
- 0xc0, 0xa3, 0xd1, 0xb1, 0xa3, 0xd3, 0xd1, 0x5e, 0x07, 0x08, 0x72, 0xe4, 0x53, 0x14, 0x0e, 0x7c,
- 0xea, 0x58, 0x9b, 0xc6, 0x96, 0xe9, 0x75, 0xa5, 0x64, 0x8f, 0xda, 0x6b, 0xd0, 0x15, 0x8a, 0x6c,
- 0xb7, 0xcb, 0x77, 0x2d, 0x21, 0xd8, 0xe3, 0xbd, 0x15, 0xa3, 0x0b, 0x14, 0x3b, 0xc0, 0x37, 0xc4,
- 0xc2, 0xde, 0x85, 0x76, 0x70, 0x16, 0xc5, 0x21, 0x71, 0x7a, 0x1c, 0xec, 0xb5, 0x19, 0x60, 0x33,
- 0x8c, 0x3c, 0xa9, 0xea, 0x3e, 0x81, 0xd5, 0x7a, 0x8c, 0x59, 0xf9, 0x76, 0xa0, 0x19, 0x47, 0x84,
- 0xca, 0xe2, 0x5d, 0x7a, 0x1e, 0x57, 0x74, 0x7f, 0x6a, 0x54, 0x4b, 0xf6, 0x14, 0xd3, 0xaf, 0x72,
- 0x84, 0xfe, 0xc7, 0x95, 0x71, 0x6f, 0xc3, 0xc6, 0x34, 0x2a, 0x44, 0xc2, 0xa2, 0xc8, 0xfc, 0xa2,
- 0x3a, 0x6c, 0x26, 0x2a, 0xac, 0x16, 0x0f, 0x4b, 0xb5, 0x70, 0x67, 0xd4, 0x42, 0x03, 0x5b, 0x96,
- 0x64, 0x15, 0x56, 0x8e, 0x72, 0x7c, 0x11, 0xa5, 0x01, 0xda, 0x8f, 0xe8, 0x78, 0x2f, 0x47, 0xbe,
- 0xf2, 0xf9, 0x10, 0xe6, 0xd4, 0xd6, 0x81, 0x4f, 0xfd, 0xba, 0xee, 0xae, 0x9b, 0x67, 0xee, 0x0b,
- 0xb0, 0xd8, 0x51, 0xd7, 0xb1, 0xb1, 0xdf, 0x85, 0xf9, 0x4c, 0xfa, 0x1a, 0x70, 0x03, 0x51, 0xd8,
- 0x39, 0x25, 0xdc, 0x67, 0xa3, 0x84, 0x82, 0xc5, 0xe2, 0xfb, 0xc7, 0x0f, 0x66, 0x35, 0x0b, 0x22,
- 0x3a, 0x16, 0x0a, 0x82, 0x36, 0x16, 0x13, 0x70, 0xaf, 0x6f, 0x0c, 0x58, 0xaa, 0x42, 0xc4, 0x30,
- 0x7f, 0xa4, 0x9d, 0xad, 0x81, 0x7f, 0x53, 0x82, 0xaf, 0x83, 0x37, 0x71, 0xc8, 0xda, 0xc7, 0xfe,
- 0x40, 0x3a, 0xe4, 0x56, 0x0d, 0x6e, 0x75, 0x43, 0x5a, 0x29, 0xe8, 0x44, 0x04, 0x4a, 0xdb, 0xcf,
- 0x91, 0x2f, 0xb4, 0xcd, 0x92, 0xb6, 0xc2, 0xc3, 0xb3, 0x98, 0x06, 0xd3, 0x76, 0x3f, 0x86, 0xe5,
- 0x63, 0x9a, 0x23, 0x44, 0xf7, 0x71, 0x92, 0x44, 0x94, 0x16, 0x24, 0x62, 0x69, 0xf2, 0x73, 0x34,
- 0xe0, 0xb8, 0x19, 0x4f, 0xf3, 0x01, 0x80, 0x30, 0xbb, 0x56, 0xad, 0x5f, 0xc2, 0x7c, 0xe1, 0xe6,
- 0x5a, 0x75, 0xd9, 0x80, 0x1e, 0xe1, 0xee, 0xf4, 0xaa, 0x00, 0x91, 0x81, 0x87, 0xc8, 0xfd, 0xd1,
- 0x80, 0x7e, 0x25, 0x0f, 0x86, 0xfa, 0xfd, 0xc2, 0x52, 0xc3, 0xfc, 0x1d, 0x45, 0xf8, 0x22, 0x05,
- 0x75, 0x18, 0x47, 0xf0, 0x53, 0x58, 0x08, 0xd4, 0x29, 0x3a, 0xe8, 0x7d, 0x05, 0xba, 0x9e, 0x83,
- 0x37, 0x5f, 0xe8, 0x72, 0x40, 0xbf, 0x80, 0xc5, 0x67, 0x84, 0x3c, 0x1b, 0x9e, 0x6b, 0xcf, 0x97,
- 0x15, 0xe8, 0x44, 0xe9, 0x24, 0x80, 0xae, 0xd7, 0x8e, 0xf8, 0x60, 0xb4, 0x57, 0xc1, 0xc2, 0x23,
- 0x3a, 0xf1, 0xd1, 0xf5, 0x3a, 0x78, 0xc4, 0x83, 0x70, 0x17, 0x61, 0x41, 0x3b, 0x27, 0x8b, 0xc7,
- 0xee, 0x2e, 0x38, 0x42, 0x72, 0x80, 0xe2, 0xa7, 0x98, 0x7e, 0xfe, 0x6a, 0x72, 0x7d, 0x31, 0x0f,
- 0x78, 0x78, 0x3e, 0x18, 0xe5, 0xb1, 0xc4, 0xb2, 0x8d, 0x87, 0xe7, 0xcf, 0xf3, 0xd8, 0x75, 0x60,
- 0xb9, 0xc6, 0x88, 0x1d, 0xf7, 0x8b, 0x01, 0xcb, 0x7b, 0x59, 0x16, 0x47, 0x81, 0x4f, 0xcb, 0x97,
- 0xa1, 0x98, 0xa1, 0xa7, 0xa2, 0x2c, 0xa6, 0xc7, 0xbf, 0x19, 0x1d, 0xd8, 0xdf, 0x01, 0x89, 0x5e,
- 0x8b, 0xda, 0x98, 0x9e, 0xc5, 0x04, 0xc7, 0xd1, 0x6b, 0x7d, 0xfa, 0x99, 0xd3, 0xd3, 0x2f, 0xf3,
- 0x83, 0x6f, 0x99, 0x5d, 0x14, 0xf2, 0x5e, 0x31, 0xbd, 0xae, 0x94, 0x1c, 0x86, 0xac, 0xac, 0xe8,
- 0x55, 0x10, 0x8f, 0x42, 0xb6, 0x4d, 0x9c, 0xd6, 0xa6, 0xb9, 0x65, 0x7a, 0x20, 0x45, 0x87, 0x21,
- 0x71, 0x7f, 0x35, 0xe0, 0x86, 0x16, 0x23, 0x1f, 0xfb, 0x36, 0x34, 0xa3, 0x00, 0xa7, 0x8a, 0x33,
- 0xec, 0x9b, 0xc9, 0x42, 0x44, 0x02, 0xc5, 0x19, 0xf6, 0x5d, 0x3b, 0xf4, 0x1d, 0xe8, 0x04, 0x38,
- 0xa5, 0x28, 0xa5, 0xb2, 0x71, 0xd5, 0x92, 0x5f, 0x26, 0x79, 0x14, 0x88, 0xc7, 0x91, 0xe9, 0x89,
- 0xc5, 0xd4, 0xf3, 0xcf, 0x2a, 0xf2, 0x5a, 0x80, 0x46, 0x14, 0xf2, 0x49, 0x6f, 0x7a, 0x8d, 0x28,
- 0x74, 0x63, 0xe8, 0x57, 0xa0, 0x64, 0xec, 0xeb, 0x43, 0x8b, 0x62, 0xea, 0xc7, 0x12, 0x49, 0xb1,
- 0x28, 0xe0, 0x6d, 0x68, 0xf0, 0xde, 0x95, 0x13, 0x59, 0x34, 0xec, 0xb2, 0x6a, 0xd8, 0x72, 0xee,
- 0x72, 0x0a, 0xff, 0x69, 0xc0, 0xaa, 0xb6, 0x73, 0xa5, 0x07, 0xcb, 0xf4, 0x75, 0xd7, 0xa8, 0x5e,
- 0x77, 0x75, 0x80, 0xdd, 0x02, 0x8b, 0xa0, 0x18, 0x05, 0x14, 0x89, 0xf2, 0x59, 0x5e, 0xb1, 0xbe,
- 0xd6, 0xf5, 0xa8, 0x6e, 0xe5, 0x8e, 0x76, 0x2b, 0x3f, 0x2a, 0x9e, 0x18, 0x16, 0x4f, 0x7a, 0xb3,
- 0x9a, 0xf4, 0x8c, 0x77, 0xc6, 0x0e, 0xac, 0xd7, 0x2a, 0x11, 0x45, 0x60, 0x51, 0x1f, 0xa3, 0xa8,
- 0xcf, 0x31, 0xac, 0xcd, 0x32, 0x60, 0x65, 0x7a, 0x50, 0xba, 0x0e, 0xff, 0x3e, 0x0e, 0xf9, 0x3e,
- 0x31, 0xa0, 0x77, 0x24, 0xb9, 0x2c, 0x89, 0xc9, 0xf1, 0x33, 0x34, 0xfc, 0xea, 0x88, 0x59, 0x50,
- 0xcd, 0xd4, 0xa9, 0xb6, 0x01, 0xbd, 0x33, 0x3c, 0x22, 0xec, 0xde, 0x19, 0x49, 0x7a, 0x9a, 0x1e,
- 0x70, 0xd1, 0x3e, 0x93, 0xc8, 0x9c, 0x5a, 0x2a, 0xa7, 0x59, 0xdc, 0x74, 0xbf, 0x07, 0x5b, 0x46,
- 0xf5, 0xaf, 0xb4, 0xf4, 0x54, 0xcf, 0x36, 0x2b, 0x3d, 0x1b, 0xc2, 0x62, 0xc9, 0xbf, 0xfc, 0x49,
- 0x54, 0xf1, 0x5e, 0xf4, 0x46, 0x43, 0xef, 0x8d, 0xf7, 0x4a, 0x7d, 0x60, 0xab, 0xcb, 0x71, 0x02,
- 0xb3, 0x04, 0x7f, 0xab, 0x34, 0xbc, 0x0e, 0xd3, 0x13, 0x3c, 0xab, 0xf6, 0x7f, 0x4c, 0xcd, 0x90,
- 0xf4, 0x04, 0xbf, 0x8d, 0x33, 0xc4, 0x3e, 0x80, 0x5e, 0x36, 0x21, 0xa6, 0xec, 0x89, 0xab, 0x3c,
- 0xcd, 0x74, 0x33, 0xf7, 0x71, 0x69, 0x12, 0x09, 0x5c, 0x58, 0x05, 0xee, 0x42, 0x33, 0x4a, 0x4f,
- 0xb0, 0xfc, 0x19, 0x57, 0x37, 0x5f, 0x98, 0x2a, 0xd7, 0x71, 0xef, 0x14, 0x0c, 0xba, 0x0c, 0xd7,
- 0xdf, 0x8d, 0xa2, 0xd0, 0x13, 0x37, 0x6f, 0x47, 0x0f, 0xd8, 0x9f, 0x88, 0x69, 0x27, 0x53, 0x23,
- 0x4e, 0x67, 0xe6, 0x54, 0x65, 0x91, 0x97, 0x74, 0xdd, 0xf7, 0x61, 0xe9, 0x4b, 0x72, 0x7a, 0x05,
- 0x00, 0x7e, 0x30, 0xe0, 0xe6, 0xb4, 0xe6, 0x2c, 0x0c, 0x38, 0x69, 0x92, 0x84, 0x91, 0xa6, 0xa1,
- 0x48, 0xc3, 0x97, 0x33, 0x90, 0x58, 0x83, 0x6e, 0x42, 0x4e, 0x4b, 0x38, 0x58, 0x09, 0x39, 0xad,
- 0x45, 0xe1, 0xf1, 0xca, 0xd7, 0x4b, 0x59, 0x8e, 0x33, 0x94, 0xd3, 0xf1, 0x87, 0x84, 0x13, 0x65,
- 0x27, 0x1b, 0xee, 0x5c, 0xdc, 0x1b, 0xb6, 0xf9, 0xff, 0x58, 0x76, 0xff, 0x0a, 0x00, 0x00, 0xff,
- 0xff, 0x8f, 0x2e, 0xaa, 0xe9, 0x73, 0x11, 0x00, 0x00,
- }
|