123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: system.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 CreateUserRequest struct {
- Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username"`
- Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CreateUserRequest) Reset() { *m = CreateUserRequest{} }
- func (m *CreateUserRequest) String() string { return proto.CompactTextString(m) }
- func (*CreateUserRequest) ProtoMessage() {}
- func (*CreateUserRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{0}
- }
- func (m *CreateUserRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CreateUserRequest.Unmarshal(m, b)
- }
- func (m *CreateUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CreateUserRequest.Marshal(b, m, deterministic)
- }
- func (m *CreateUserRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CreateUserRequest.Merge(m, src)
- }
- func (m *CreateUserRequest) XXX_Size() int {
- return xxx_messageInfo_CreateUserRequest.Size(m)
- }
- func (m *CreateUserRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_CreateUserRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_CreateUserRequest proto.InternalMessageInfo
- func (m *CreateUserRequest) GetUsername() string {
- if m != nil {
- return m.Username
- }
- return ""
- }
- func (m *CreateUserRequest) GetPassword() string {
- if m != nil {
- return m.Password
- }
- return ""
- }
- type CreateUserReply struct {
- Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CreateUserReply) Reset() { *m = CreateUserReply{} }
- func (m *CreateUserReply) String() string { return proto.CompactTextString(m) }
- func (*CreateUserReply) ProtoMessage() {}
- func (*CreateUserReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{1}
- }
- func (m *CreateUserReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CreateUserReply.Unmarshal(m, b)
- }
- func (m *CreateUserReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CreateUserReply.Marshal(b, m, deterministic)
- }
- func (m *CreateUserReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CreateUserReply.Merge(m, src)
- }
- func (m *CreateUserReply) XXX_Size() int {
- return xxx_messageInfo_CreateUserReply.Size(m)
- }
- func (m *CreateUserReply) XXX_DiscardUnknown() {
- xxx_messageInfo_CreateUserReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_CreateUserReply proto.InternalMessageInfo
- func (m *CreateUserReply) GetUid() int64 {
- if m != nil {
- return m.Uid
- }
- return 0
- }
- type LoginRequest struct {
- Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username"`
- Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *LoginRequest) Reset() { *m = LoginRequest{} }
- func (m *LoginRequest) String() string { return proto.CompactTextString(m) }
- func (*LoginRequest) ProtoMessage() {}
- func (*LoginRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{2}
- }
- func (m *LoginRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_LoginRequest.Unmarshal(m, b)
- }
- func (m *LoginRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_LoginRequest.Marshal(b, m, deterministic)
- }
- func (m *LoginRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_LoginRequest.Merge(m, src)
- }
- func (m *LoginRequest) XXX_Size() int {
- return xxx_messageInfo_LoginRequest.Size(m)
- }
- func (m *LoginRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_LoginRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_LoginRequest proto.InternalMessageInfo
- func (m *LoginRequest) GetUsername() string {
- if m != nil {
- return m.Username
- }
- return ""
- }
- func (m *LoginRequest) GetPassword() string {
- if m != nil {
- return m.Password
- }
- return ""
- }
- type LoginReply struct {
- Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *LoginReply) Reset() { *m = LoginReply{} }
- func (m *LoginReply) String() string { return proto.CompactTextString(m) }
- func (*LoginReply) ProtoMessage() {}
- func (*LoginReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{3}
- }
- func (m *LoginReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_LoginReply.Unmarshal(m, b)
- }
- func (m *LoginReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_LoginReply.Marshal(b, m, deterministic)
- }
- func (m *LoginReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_LoginReply.Merge(m, src)
- }
- func (m *LoginReply) XXX_Size() int {
- return xxx_messageInfo_LoginReply.Size(m)
- }
- func (m *LoginReply) XXX_DiscardUnknown() {
- xxx_messageInfo_LoginReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_LoginReply proto.InternalMessageInfo
- func (m *LoginReply) GetUid() int64 {
- if m != nil {
- return m.Uid
- }
- return 0
- }
- type ChangePasswordRequest struct {
- Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
- Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ChangePasswordRequest) Reset() { *m = ChangePasswordRequest{} }
- func (m *ChangePasswordRequest) String() string { return proto.CompactTextString(m) }
- func (*ChangePasswordRequest) ProtoMessage() {}
- func (*ChangePasswordRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{4}
- }
- func (m *ChangePasswordRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ChangePasswordRequest.Unmarshal(m, b)
- }
- func (m *ChangePasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ChangePasswordRequest.Marshal(b, m, deterministic)
- }
- func (m *ChangePasswordRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ChangePasswordRequest.Merge(m, src)
- }
- func (m *ChangePasswordRequest) XXX_Size() int {
- return xxx_messageInfo_ChangePasswordRequest.Size(m)
- }
- func (m *ChangePasswordRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_ChangePasswordRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_ChangePasswordRequest proto.InternalMessageInfo
- func (m *ChangePasswordRequest) GetUid() int64 {
- if m != nil {
- return m.Uid
- }
- return 0
- }
- func (m *ChangePasswordRequest) GetPassword() string {
- if m != nil {
- return m.Password
- }
- return ""
- }
- type ChangePasswordReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *ChangePasswordReply) Reset() { *m = ChangePasswordReply{} }
- func (m *ChangePasswordReply) String() string { return proto.CompactTextString(m) }
- func (*ChangePasswordReply) ProtoMessage() {}
- func (*ChangePasswordReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{5}
- }
- func (m *ChangePasswordReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_ChangePasswordReply.Unmarshal(m, b)
- }
- func (m *ChangePasswordReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_ChangePasswordReply.Marshal(b, m, deterministic)
- }
- func (m *ChangePasswordReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_ChangePasswordReply.Merge(m, src)
- }
- func (m *ChangePasswordReply) XXX_Size() int {
- return xxx_messageInfo_ChangePasswordReply.Size(m)
- }
- func (m *ChangePasswordReply) XXX_DiscardUnknown() {
- xxx_messageInfo_ChangePasswordReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_ChangePasswordReply proto.InternalMessageInfo
- type CreateOrganizationRequest struct {
- OrganizationName string `protobuf:"bytes,1,opt,name=organization_name,json=organizationName,proto3" json:"organization_name"`
- Month int64 `protobuf:"varint,2,opt,name=month,proto3" json:"month"`
- State int64 `protobuf:"varint,3,opt,name=state,proto3" json:"state"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CreateOrganizationRequest) Reset() { *m = CreateOrganizationRequest{} }
- func (m *CreateOrganizationRequest) String() string { return proto.CompactTextString(m) }
- func (*CreateOrganizationRequest) ProtoMessage() {}
- func (*CreateOrganizationRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{6}
- }
- func (m *CreateOrganizationRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CreateOrganizationRequest.Unmarshal(m, b)
- }
- func (m *CreateOrganizationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CreateOrganizationRequest.Marshal(b, m, deterministic)
- }
- func (m *CreateOrganizationRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CreateOrganizationRequest.Merge(m, src)
- }
- func (m *CreateOrganizationRequest) XXX_Size() int {
- return xxx_messageInfo_CreateOrganizationRequest.Size(m)
- }
- func (m *CreateOrganizationRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_CreateOrganizationRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_CreateOrganizationRequest proto.InternalMessageInfo
- func (m *CreateOrganizationRequest) GetOrganizationName() string {
- if m != nil {
- return m.OrganizationName
- }
- return ""
- }
- func (m *CreateOrganizationRequest) GetMonth() int64 {
- if m != nil {
- return m.Month
- }
- return 0
- }
- func (m *CreateOrganizationRequest) GetState() int64 {
- if m != nil {
- return m.State
- }
- return 0
- }
- type CreateOrganizationReply struct {
- Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CreateOrganizationReply) Reset() { *m = CreateOrganizationReply{} }
- func (m *CreateOrganizationReply) String() string { return proto.CompactTextString(m) }
- func (*CreateOrganizationReply) ProtoMessage() {}
- func (*CreateOrganizationReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{7}
- }
- func (m *CreateOrganizationReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CreateOrganizationReply.Unmarshal(m, b)
- }
- func (m *CreateOrganizationReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CreateOrganizationReply.Marshal(b, m, deterministic)
- }
- func (m *CreateOrganizationReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CreateOrganizationReply.Merge(m, src)
- }
- func (m *CreateOrganizationReply) XXX_Size() int {
- return xxx_messageInfo_CreateOrganizationReply.Size(m)
- }
- func (m *CreateOrganizationReply) XXX_DiscardUnknown() {
- xxx_messageInfo_CreateOrganizationReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_CreateOrganizationReply proto.InternalMessageInfo
- func (m *CreateOrganizationReply) GetUid() int64 {
- if m != nil {
- return m.Uid
- }
- return 0
- }
- type DeleteOrganizationRequest struct {
- OrganizationCode string `protobuf:"bytes,1,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *DeleteOrganizationRequest) Reset() { *m = DeleteOrganizationRequest{} }
- func (m *DeleteOrganizationRequest) String() string { return proto.CompactTextString(m) }
- func (*DeleteOrganizationRequest) ProtoMessage() {}
- func (*DeleteOrganizationRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{8}
- }
- func (m *DeleteOrganizationRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_DeleteOrganizationRequest.Unmarshal(m, b)
- }
- func (m *DeleteOrganizationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_DeleteOrganizationRequest.Marshal(b, m, deterministic)
- }
- func (m *DeleteOrganizationRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_DeleteOrganizationRequest.Merge(m, src)
- }
- func (m *DeleteOrganizationRequest) XXX_Size() int {
- return xxx_messageInfo_DeleteOrganizationRequest.Size(m)
- }
- func (m *DeleteOrganizationRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_DeleteOrganizationRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_DeleteOrganizationRequest proto.InternalMessageInfo
- func (m *DeleteOrganizationRequest) GetOrganizationCode() string {
- if m != nil {
- return m.OrganizationCode
- }
- return ""
- }
- type DeleteOrganizationReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *DeleteOrganizationReply) Reset() { *m = DeleteOrganizationReply{} }
- func (m *DeleteOrganizationReply) String() string { return proto.CompactTextString(m) }
- func (*DeleteOrganizationReply) ProtoMessage() {}
- func (*DeleteOrganizationReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{9}
- }
- func (m *DeleteOrganizationReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_DeleteOrganizationReply.Unmarshal(m, b)
- }
- func (m *DeleteOrganizationReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_DeleteOrganizationReply.Marshal(b, m, deterministic)
- }
- func (m *DeleteOrganizationReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_DeleteOrganizationReply.Merge(m, src)
- }
- func (m *DeleteOrganizationReply) XXX_Size() int {
- return xxx_messageInfo_DeleteOrganizationReply.Size(m)
- }
- func (m *DeleteOrganizationReply) XXX_DiscardUnknown() {
- xxx_messageInfo_DeleteOrganizationReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_DeleteOrganizationReply proto.InternalMessageInfo
- type Organization struct {
- OrganizationName string `protobuf:"bytes,1,opt,name=organization_name,json=organizationName,proto3" json:"organization_name"`
- OrganizationCode string `protobuf:"bytes,2,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"`
- State int64 `protobuf:"varint,3,opt,name=state,proto3" json:"state"`
- EndTime int64 `protobuf:"varint,4,opt,name=end_time,json=endTime,proto3" json:"end_time"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *Organization) Reset() { *m = Organization{} }
- func (m *Organization) String() string { return proto.CompactTextString(m) }
- func (*Organization) ProtoMessage() {}
- func (*Organization) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{10}
- }
- func (m *Organization) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_Organization.Unmarshal(m, b)
- }
- func (m *Organization) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_Organization.Marshal(b, m, deterministic)
- }
- func (m *Organization) XXX_Merge(src proto.Message) {
- xxx_messageInfo_Organization.Merge(m, src)
- }
- func (m *Organization) XXX_Size() int {
- return xxx_messageInfo_Organization.Size(m)
- }
- func (m *Organization) XXX_DiscardUnknown() {
- xxx_messageInfo_Organization.DiscardUnknown(m)
- }
- var xxx_messageInfo_Organization proto.InternalMessageInfo
- func (m *Organization) GetOrganizationName() string {
- if m != nil {
- return m.OrganizationName
- }
- return ""
- }
- func (m *Organization) GetOrganizationCode() string {
- if m != nil {
- return m.OrganizationCode
- }
- return ""
- }
- func (m *Organization) GetState() int64 {
- if m != nil {
- return m.State
- }
- return 0
- }
- func (m *Organization) GetEndTime() int64 {
- if m != nil {
- return m.EndTime
- }
- return 0
- }
- type UpdateOrganizationRequest struct {
- OrganizationName string `protobuf:"bytes,1,opt,name=organization_name,json=organizationName,proto3" json:"organization_name"`
- Month int64 `protobuf:"varint,2,opt,name=month,proto3" json:"month"`
- State int64 `protobuf:"varint,3,opt,name=state,proto3" json:"state"`
- OrganizationCode string `protobuf:"bytes,4,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *UpdateOrganizationRequest) Reset() { *m = UpdateOrganizationRequest{} }
- func (m *UpdateOrganizationRequest) String() string { return proto.CompactTextString(m) }
- func (*UpdateOrganizationRequest) ProtoMessage() {}
- func (*UpdateOrganizationRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{11}
- }
- func (m *UpdateOrganizationRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UpdateOrganizationRequest.Unmarshal(m, b)
- }
- func (m *UpdateOrganizationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UpdateOrganizationRequest.Marshal(b, m, deterministic)
- }
- func (m *UpdateOrganizationRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UpdateOrganizationRequest.Merge(m, src)
- }
- func (m *UpdateOrganizationRequest) XXX_Size() int {
- return xxx_messageInfo_UpdateOrganizationRequest.Size(m)
- }
- func (m *UpdateOrganizationRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_UpdateOrganizationRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_UpdateOrganizationRequest proto.InternalMessageInfo
- func (m *UpdateOrganizationRequest) GetOrganizationName() string {
- if m != nil {
- return m.OrganizationName
- }
- return ""
- }
- func (m *UpdateOrganizationRequest) GetMonth() int64 {
- if m != nil {
- return m.Month
- }
- return 0
- }
- func (m *UpdateOrganizationRequest) GetState() int64 {
- if m != nil {
- return m.State
- }
- return 0
- }
- func (m *UpdateOrganizationRequest) GetOrganizationCode() string {
- if m != nil {
- return m.OrganizationCode
- }
- return ""
- }
- type UpdateOrganizationReply struct {
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *UpdateOrganizationReply) Reset() { *m = UpdateOrganizationReply{} }
- func (m *UpdateOrganizationReply) String() string { return proto.CompactTextString(m) }
- func (*UpdateOrganizationReply) ProtoMessage() {}
- func (*UpdateOrganizationReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{12}
- }
- func (m *UpdateOrganizationReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UpdateOrganizationReply.Unmarshal(m, b)
- }
- func (m *UpdateOrganizationReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UpdateOrganizationReply.Marshal(b, m, deterministic)
- }
- func (m *UpdateOrganizationReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UpdateOrganizationReply.Merge(m, src)
- }
- func (m *UpdateOrganizationReply) XXX_Size() int {
- return xxx_messageInfo_UpdateOrganizationReply.Size(m)
- }
- func (m *UpdateOrganizationReply) XXX_DiscardUnknown() {
- xxx_messageInfo_UpdateOrganizationReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_UpdateOrganizationReply proto.InternalMessageInfo
- type OrganizationListRequest 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"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *OrganizationListRequest) Reset() { *m = OrganizationListRequest{} }
- func (m *OrganizationListRequest) String() string { return proto.CompactTextString(m) }
- func (*OrganizationListRequest) ProtoMessage() {}
- func (*OrganizationListRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{13}
- }
- func (m *OrganizationListRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_OrganizationListRequest.Unmarshal(m, b)
- }
- func (m *OrganizationListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_OrganizationListRequest.Marshal(b, m, deterministic)
- }
- func (m *OrganizationListRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_OrganizationListRequest.Merge(m, src)
- }
- func (m *OrganizationListRequest) XXX_Size() int {
- return xxx_messageInfo_OrganizationListRequest.Size(m)
- }
- func (m *OrganizationListRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_OrganizationListRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_OrganizationListRequest proto.InternalMessageInfo
- func (m *OrganizationListRequest) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *OrganizationListRequest) GetPageSize() int64 {
- if m != nil {
- return m.PageSize
- }
- return 0
- }
- type OrganizationListReply struct {
- Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count"`
- Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
- Organization []*Organization `protobuf:"bytes,3,rep,name=organization,proto3" json:"organization"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *OrganizationListReply) Reset() { *m = OrganizationListReply{} }
- func (m *OrganizationListReply) String() string { return proto.CompactTextString(m) }
- func (*OrganizationListReply) ProtoMessage() {}
- func (*OrganizationListReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{14}
- }
- func (m *OrganizationListReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_OrganizationListReply.Unmarshal(m, b)
- }
- func (m *OrganizationListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_OrganizationListReply.Marshal(b, m, deterministic)
- }
- func (m *OrganizationListReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_OrganizationListReply.Merge(m, src)
- }
- func (m *OrganizationListReply) XXX_Size() int {
- return xxx_messageInfo_OrganizationListReply.Size(m)
- }
- func (m *OrganizationListReply) XXX_DiscardUnknown() {
- xxx_messageInfo_OrganizationListReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_OrganizationListReply proto.InternalMessageInfo
- func (m *OrganizationListReply) GetCount() int64 {
- if m != nil {
- return m.Count
- }
- return 0
- }
- func (m *OrganizationListReply) GetPage() int64 {
- if m != nil {
- return m.Page
- }
- return 0
- }
- func (m *OrganizationListReply) GetOrganization() []*Organization {
- if m != nil {
- return m.Organization
- }
- return nil
- }
- type CreateOrganizationUserRequest struct {
- OrganizationCode string `protobuf:"bytes,1,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"`
- Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username"`
- Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password"`
- Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"`
- Email string `protobuf:"bytes,5,opt,name=email,proto3" json:"email"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CreateOrganizationUserRequest) Reset() { *m = CreateOrganizationUserRequest{} }
- func (m *CreateOrganizationUserRequest) String() string { return proto.CompactTextString(m) }
- func (*CreateOrganizationUserRequest) ProtoMessage() {}
- func (*CreateOrganizationUserRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{15}
- }
- func (m *CreateOrganizationUserRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CreateOrganizationUserRequest.Unmarshal(m, b)
- }
- func (m *CreateOrganizationUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CreateOrganizationUserRequest.Marshal(b, m, deterministic)
- }
- func (m *CreateOrganizationUserRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CreateOrganizationUserRequest.Merge(m, src)
- }
- func (m *CreateOrganizationUserRequest) XXX_Size() int {
- return xxx_messageInfo_CreateOrganizationUserRequest.Size(m)
- }
- func (m *CreateOrganizationUserRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_CreateOrganizationUserRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_CreateOrganizationUserRequest proto.InternalMessageInfo
- func (m *CreateOrganizationUserRequest) GetOrganizationCode() string {
- if m != nil {
- return m.OrganizationCode
- }
- return ""
- }
- func (m *CreateOrganizationUserRequest) GetUsername() string {
- if m != nil {
- return m.Username
- }
- return ""
- }
- func (m *CreateOrganizationUserRequest) GetPassword() string {
- if m != nil {
- return m.Password
- }
- return ""
- }
- func (m *CreateOrganizationUserRequest) GetPhone() string {
- if m != nil {
- return m.Phone
- }
- return ""
- }
- func (m *CreateOrganizationUserRequest) GetEmail() string {
- if m != nil {
- return m.Email
- }
- return ""
- }
- type CreateOrganizationUserReply struct {
- Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *CreateOrganizationUserReply) Reset() { *m = CreateOrganizationUserReply{} }
- func (m *CreateOrganizationUserReply) String() string { return proto.CompactTextString(m) }
- func (*CreateOrganizationUserReply) ProtoMessage() {}
- func (*CreateOrganizationUserReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{16}
- }
- func (m *CreateOrganizationUserReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_CreateOrganizationUserReply.Unmarshal(m, b)
- }
- func (m *CreateOrganizationUserReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_CreateOrganizationUserReply.Marshal(b, m, deterministic)
- }
- func (m *CreateOrganizationUserReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_CreateOrganizationUserReply.Merge(m, src)
- }
- func (m *CreateOrganizationUserReply) XXX_Size() int {
- return xxx_messageInfo_CreateOrganizationUserReply.Size(m)
- }
- func (m *CreateOrganizationUserReply) XXX_DiscardUnknown() {
- xxx_messageInfo_CreateOrganizationUserReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_CreateOrganizationUserReply proto.InternalMessageInfo
- func (m *CreateOrganizationUserReply) GetUid() int64 {
- if m != nil {
- return m.Uid
- }
- return 0
- }
- type OrganizationKeyAuthRequest struct {
- Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *OrganizationKeyAuthRequest) Reset() { *m = OrganizationKeyAuthRequest{} }
- func (m *OrganizationKeyAuthRequest) String() string { return proto.CompactTextString(m) }
- func (*OrganizationKeyAuthRequest) ProtoMessage() {}
- func (*OrganizationKeyAuthRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{17}
- }
- func (m *OrganizationKeyAuthRequest) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_OrganizationKeyAuthRequest.Unmarshal(m, b)
- }
- func (m *OrganizationKeyAuthRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_OrganizationKeyAuthRequest.Marshal(b, m, deterministic)
- }
- func (m *OrganizationKeyAuthRequest) XXX_Merge(src proto.Message) {
- xxx_messageInfo_OrganizationKeyAuthRequest.Merge(m, src)
- }
- func (m *OrganizationKeyAuthRequest) XXX_Size() int {
- return xxx_messageInfo_OrganizationKeyAuthRequest.Size(m)
- }
- func (m *OrganizationKeyAuthRequest) XXX_DiscardUnknown() {
- xxx_messageInfo_OrganizationKeyAuthRequest.DiscardUnknown(m)
- }
- var xxx_messageInfo_OrganizationKeyAuthRequest proto.InternalMessageInfo
- func (m *OrganizationKeyAuthRequest) GetKey() string {
- if m != nil {
- return m.Key
- }
- return ""
- }
- type OrganizationKeyAuthReply struct {
- OrganizationCode string `protobuf:"bytes,1,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"`
- OrganizationName string `protobuf:"bytes,2,opt,name=organization_name,json=organizationName,proto3" json:"organization_name"`
- EndTime int64 `protobuf:"varint,3,opt,name=end_time,json=endTime,proto3" json:"end_time"`
- IsDisable bool `protobuf:"varint,4,opt,name=is_disable,json=isDisable,proto3" json:"is_disable"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
- }
- func (m *OrganizationKeyAuthReply) Reset() { *m = OrganizationKeyAuthReply{} }
- func (m *OrganizationKeyAuthReply) String() string { return proto.CompactTextString(m) }
- func (*OrganizationKeyAuthReply) ProtoMessage() {}
- func (*OrganizationKeyAuthReply) Descriptor() ([]byte, []int) {
- return fileDescriptor_86a7260ebdc12f47, []int{18}
- }
- func (m *OrganizationKeyAuthReply) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_OrganizationKeyAuthReply.Unmarshal(m, b)
- }
- func (m *OrganizationKeyAuthReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_OrganizationKeyAuthReply.Marshal(b, m, deterministic)
- }
- func (m *OrganizationKeyAuthReply) XXX_Merge(src proto.Message) {
- xxx_messageInfo_OrganizationKeyAuthReply.Merge(m, src)
- }
- func (m *OrganizationKeyAuthReply) XXX_Size() int {
- return xxx_messageInfo_OrganizationKeyAuthReply.Size(m)
- }
- func (m *OrganizationKeyAuthReply) XXX_DiscardUnknown() {
- xxx_messageInfo_OrganizationKeyAuthReply.DiscardUnknown(m)
- }
- var xxx_messageInfo_OrganizationKeyAuthReply proto.InternalMessageInfo
- func (m *OrganizationKeyAuthReply) GetOrganizationCode() string {
- if m != nil {
- return m.OrganizationCode
- }
- return ""
- }
- func (m *OrganizationKeyAuthReply) GetOrganizationName() string {
- if m != nil {
- return m.OrganizationName
- }
- return ""
- }
- func (m *OrganizationKeyAuthReply) GetEndTime() int64 {
- if m != nil {
- return m.EndTime
- }
- return 0
- }
- func (m *OrganizationKeyAuthReply) GetIsDisable() bool {
- if m != nil {
- return m.IsDisable
- }
- return false
- }
- func init() {
- proto.RegisterType((*CreateUserRequest)(nil), "pb_v1.CreateUserRequest")
- proto.RegisterType((*CreateUserReply)(nil), "pb_v1.CreateUserReply")
- proto.RegisterType((*LoginRequest)(nil), "pb_v1.LoginRequest")
- proto.RegisterType((*LoginReply)(nil), "pb_v1.LoginReply")
- proto.RegisterType((*ChangePasswordRequest)(nil), "pb_v1.ChangePasswordRequest")
- proto.RegisterType((*ChangePasswordReply)(nil), "pb_v1.ChangePasswordReply")
- proto.RegisterType((*CreateOrganizationRequest)(nil), "pb_v1.CreateOrganizationRequest")
- proto.RegisterType((*CreateOrganizationReply)(nil), "pb_v1.CreateOrganizationReply")
- proto.RegisterType((*DeleteOrganizationRequest)(nil), "pb_v1.DeleteOrganizationRequest")
- proto.RegisterType((*DeleteOrganizationReply)(nil), "pb_v1.DeleteOrganizationReply")
- proto.RegisterType((*Organization)(nil), "pb_v1.Organization")
- proto.RegisterType((*UpdateOrganizationRequest)(nil), "pb_v1.UpdateOrganizationRequest")
- proto.RegisterType((*UpdateOrganizationReply)(nil), "pb_v1.UpdateOrganizationReply")
- proto.RegisterType((*OrganizationListRequest)(nil), "pb_v1.OrganizationListRequest")
- proto.RegisterType((*OrganizationListReply)(nil), "pb_v1.OrganizationListReply")
- proto.RegisterType((*CreateOrganizationUserRequest)(nil), "pb_v1.CreateOrganizationUserRequest")
- proto.RegisterType((*CreateOrganizationUserReply)(nil), "pb_v1.CreateOrganizationUserReply")
- proto.RegisterType((*OrganizationKeyAuthRequest)(nil), "pb_v1.OrganizationKeyAuthRequest")
- proto.RegisterType((*OrganizationKeyAuthReply)(nil), "pb_v1.OrganizationKeyAuthReply")
- }
- func init() {
- proto.RegisterFile("system.proto", fileDescriptor_86a7260ebdc12f47)
- }
- var fileDescriptor_86a7260ebdc12f47 = []byte{
- // 542 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0xc1, 0x6e, 0x13, 0x31,
- 0x10, 0xd5, 0x66, 0x13, 0x48, 0x86, 0x48, 0xb4, 0xdb, 0x46, 0xd9, 0xb4, 0x2a, 0x8a, 0xcc, 0xa5,
- 0x52, 0xd5, 0x44, 0x85, 0x03, 0x67, 0x48, 0x41, 0x88, 0x56, 0x80, 0x02, 0xbd, 0x70, 0x89, 0x9c,
- 0xec, 0x28, 0xb1, 0xc8, 0xda, 0x66, 0xed, 0x14, 0x6d, 0xfe, 0x84, 0x23, 0x3f, 0x80, 0xf8, 0x44,
- 0xe4, 0xdd, 0x4d, 0xe4, 0x25, 0x4e, 0x45, 0x84, 0xd4, 0x53, 0x3c, 0xcf, 0xde, 0x37, 0xef, 0x8d,
- 0xc7, 0x13, 0x68, 0xaa, 0x54, 0x69, 0x8c, 0x7b, 0x32, 0x11, 0x5a, 0x04, 0x35, 0x39, 0x1e, 0xdd,
- 0x5e, 0x90, 0x2b, 0xd8, 0x1f, 0x24, 0x48, 0x35, 0xde, 0x28, 0x4c, 0x86, 0xf8, 0x6d, 0x81, 0x4a,
- 0x07, 0x47, 0x50, 0x5f, 0x28, 0x4c, 0x38, 0x8d, 0x31, 0xf4, 0xba, 0xde, 0x69, 0x63, 0xb8, 0x8e,
- 0xcd, 0x9e, 0xa4, 0x4a, 0x7d, 0x17, 0x49, 0x14, 0x56, 0xf2, 0xbd, 0x55, 0x4c, 0x9e, 0xc2, 0x63,
- 0x9b, 0x4c, 0xce, 0xd3, 0x60, 0x0f, 0xfc, 0x05, 0x8b, 0x32, 0x16, 0x7f, 0x68, 0x96, 0xe4, 0x0d,
- 0x34, 0xaf, 0xc5, 0x94, 0xf1, 0xff, 0x4d, 0xf6, 0x04, 0xa0, 0xe0, 0x71, 0xe7, 0x79, 0x0d, 0xad,
- 0xc1, 0x8c, 0xf2, 0x29, 0x7e, 0x2c, 0xbe, 0x58, 0x25, 0xdc, 0x38, 0x7a, 0x67, 0x9a, 0x16, 0x1c,
- 0xfc, 0x4d, 0x23, 0xe7, 0x29, 0xd1, 0xd0, 0xc9, 0xad, 0x7e, 0x48, 0xa6, 0x94, 0xb3, 0x25, 0xd5,
- 0x4c, 0xac, 0x2d, 0x9d, 0xc1, 0xbe, 0xb0, 0xe0, 0x91, 0xe5, 0x6d, 0xcf, 0xde, 0x78, 0x6f, 0x3c,
- 0x1e, 0x42, 0x2d, 0x16, 0x5c, 0xcf, 0xb2, 0xcc, 0xfe, 0x30, 0x0f, 0x0c, 0xaa, 0x34, 0xd5, 0x18,
- 0xfa, 0x39, 0x9a, 0x05, 0xe4, 0x0c, 0xda, 0xae, 0xac, 0xee, 0x02, 0xbc, 0x85, 0xce, 0x25, 0xce,
- 0xf1, 0xdf, 0x24, 0x4e, 0x44, 0xe4, 0x94, 0x38, 0x10, 0x11, 0x92, 0x0e, 0xb4, 0x5d, 0x4c, 0xa6,
- 0x0e, 0x3f, 0x3c, 0x68, 0xda, 0xe8, 0x6e, 0xde, 0x9d, 0x2a, 0x2a, 0x6e, 0x15, 0xee, 0x92, 0x04,
- 0x1d, 0xa8, 0x23, 0x8f, 0x46, 0x9a, 0xc5, 0x18, 0x56, 0xb3, 0x8d, 0x87, 0xc8, 0xa3, 0xcf, 0x2c,
- 0x46, 0xf2, 0xd3, 0x83, 0xce, 0x8d, 0x8c, 0xee, 0xf9, 0x92, 0xdc, 0xa6, 0xaa, 0xdb, 0x4b, 0xeb,
- 0x92, 0x68, 0x4a, 0xfb, 0x0e, 0xda, 0x36, 0x78, 0xcd, 0x94, 0x5e, 0x69, 0x0f, 0xa0, 0x2a, 0xe9,
- 0x14, 0x8b, 0xdb, 0xce, 0xd6, 0xc1, 0x31, 0x34, 0xcc, 0xef, 0x48, 0xb1, 0x25, 0x16, 0x32, 0xeb,
- 0x06, 0xf8, 0xc4, 0x96, 0x48, 0x96, 0xd0, 0xda, 0xe4, 0x32, 0x6d, 0x73, 0x08, 0xb5, 0x89, 0x58,
- 0x70, 0x5d, 0x50, 0xe5, 0xc1, 0x9a, 0xbf, 0x62, 0xf1, 0xbf, 0x80, 0xa6, 0xad, 0x3e, 0xf4, 0xbb,
- 0xfe, 0xe9, 0xa3, 0x67, 0x07, 0xbd, 0x6c, 0x8e, 0xf4, 0x4a, 0xf2, 0x4b, 0x07, 0xc9, 0x6f, 0x0f,
- 0x4e, 0x36, 0xbb, 0xd6, 0x9e, 0x37, 0xbb, 0x34, 0x63, 0x69, 0x5e, 0x54, 0xee, 0x98, 0x17, 0x7e,
- 0xf9, 0x21, 0x1b, 0xa7, 0x72, 0x26, 0xf8, 0xea, 0x2a, 0xf2, 0xc0, 0xa0, 0x18, 0x53, 0x36, 0x0f,
- 0x6b, 0x39, 0x9a, 0x05, 0xa4, 0x0f, 0xc7, 0xdb, 0x14, 0xbb, 0xdf, 0x5a, 0x0f, 0x8e, 0xec, 0xa3,
- 0x57, 0x98, 0xbe, 0x5c, 0xe8, 0x99, 0x35, 0x71, 0xbe, 0x62, 0x5a, 0x38, 0x32, 0x4b, 0xf2, 0xcb,
- 0x83, 0xd0, 0xf9, 0x81, 0xa1, 0xdf, 0xa9, 0x1c, 0xce, 0x36, 0xae, 0x6c, 0x69, 0x63, 0xfb, 0xb1,
- 0xf8, 0xa5, 0xc7, 0x12, 0x9c, 0x00, 0x30, 0x35, 0x8a, 0x98, 0xa2, 0xe3, 0x79, 0x5e, 0xa3, 0xfa,
- 0xb0, 0xc1, 0xd4, 0x65, 0x0e, 0xbc, 0x22, 0x5f, 0xba, 0x13, 0x79, 0x6e, 0x13, 0x9e, 0xc7, 0x94,
- 0xd3, 0x29, 0xc6, 0xc8, 0x75, 0x5f, 0x8e, 0xfb, 0xb7, 0x17, 0xe3, 0x07, 0xd9, 0x3f, 0xcb, 0xf3,
- 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x77, 0xff, 0xd2, 0xc4, 0x69, 0x06, 0x00, 0x00,
- }
|