// 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"` Old string `protobuf:"bytes,3,opt,name=old,proto3" json:"old"` 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 "" } func (m *ChangePasswordRequest) GetOld() string { if m != nil { return m.Old } 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"` IsDisable bool `protobuf:"varint,3,opt,name=is_disable,json=isDisable,proto3" json:"is_disable"` 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) GetIsDisable() bool { if m != nil { return m.IsDisable } return false } type CreateOrganizationReply 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 *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) GetOrganizationCode() string { if m != nil { return m.OrganizationCode } return "" } 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"` 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"` IsExpire bool `protobuf:"varint,5,opt,name=is_expire,json=isExpire,proto3" json:"is_expire"` Key string `protobuf:"bytes,6,opt,name=key,proto3" json:"key"` 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) GetEndTime() int64 { if m != nil { return m.EndTime } return 0 } func (m *Organization) GetIsDisable() bool { if m != nil { return m.IsDisable } return false } func (m *Organization) GetIsExpire() bool { if m != nil { return m.IsExpire } return false } func (m *Organization) GetKey() string { if m != nil { return m.Key } return "" } 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"` IsDisable bool `protobuf:"varint,3,opt,name=is_disable,json=isDisable,proto3" json:"is_disable"` 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) GetIsDisable() bool { if m != nil { return m.IsDisable } return false } func (m *UpdateOrganizationRequest) GetOrganizationCode() string { if m != nil { return m.OrganizationCode } return "" } type UpdateOrganizationReply struct { Origin *UpdateOrganizationRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"` 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 func (m *UpdateOrganizationReply) GetOrigin() *UpdateOrganizationRequest { if m != nil { return m.Origin } return nil } 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"` Filter string `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter"` 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 } func (m *OrganizationListRequest) GetFilter() string { if m != nil { return m.Filter } return "" } type OrganizationListReply struct { Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"` Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"` List []*Organization `protobuf:"bytes,3,rep,name=list,proto3" json:"list"` 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) GetTotal() int64 { if m != nil { return m.Total } return 0 } func (m *OrganizationListReply) GetPage() int64 { if m != nil { return m.Page } return 0 } func (m *OrganizationListReply) GetList() []*Organization { if m != nil { return m.List } 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 OrganizationUserListRequest 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"` OrganizationCode string `protobuf:"bytes,3,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *OrganizationUserListRequest) Reset() { *m = OrganizationUserListRequest{} } func (m *OrganizationUserListRequest) String() string { return proto.CompactTextString(m) } func (*OrganizationUserListRequest) ProtoMessage() {} func (*OrganizationUserListRequest) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{17} } func (m *OrganizationUserListRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_OrganizationUserListRequest.Unmarshal(m, b) } func (m *OrganizationUserListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_OrganizationUserListRequest.Marshal(b, m, deterministic) } func (m *OrganizationUserListRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_OrganizationUserListRequest.Merge(m, src) } func (m *OrganizationUserListRequest) XXX_Size() int { return xxx_messageInfo_OrganizationUserListRequest.Size(m) } func (m *OrganizationUserListRequest) XXX_DiscardUnknown() { xxx_messageInfo_OrganizationUserListRequest.DiscardUnknown(m) } var xxx_messageInfo_OrganizationUserListRequest proto.InternalMessageInfo func (m *OrganizationUserListRequest) GetPage() int64 { if m != nil { return m.Page } return 0 } func (m *OrganizationUserListRequest) GetPageSize() int64 { if m != nil { return m.PageSize } return 0 } func (m *OrganizationUserListRequest) GetOrganizationCode() string { if m != nil { return m.OrganizationCode } return "" } type OrganizationUserItem 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"` Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone"` Email string `protobuf:"bytes,4,opt,name=email,proto3" json:"email"` Id int64 `protobuf:"varint,5,opt,name=id,proto3" json:"id"` CreatedAt string `protobuf:"bytes,6,opt,name=created_at,json=createdAt,proto3" json:"created_at"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *OrganizationUserItem) Reset() { *m = OrganizationUserItem{} } func (m *OrganizationUserItem) String() string { return proto.CompactTextString(m) } func (*OrganizationUserItem) ProtoMessage() {} func (*OrganizationUserItem) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{18} } func (m *OrganizationUserItem) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_OrganizationUserItem.Unmarshal(m, b) } func (m *OrganizationUserItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_OrganizationUserItem.Marshal(b, m, deterministic) } func (m *OrganizationUserItem) XXX_Merge(src proto.Message) { xxx_messageInfo_OrganizationUserItem.Merge(m, src) } func (m *OrganizationUserItem) XXX_Size() int { return xxx_messageInfo_OrganizationUserItem.Size(m) } func (m *OrganizationUserItem) XXX_DiscardUnknown() { xxx_messageInfo_OrganizationUserItem.DiscardUnknown(m) } var xxx_messageInfo_OrganizationUserItem proto.InternalMessageInfo func (m *OrganizationUserItem) GetOrganizationCode() string { if m != nil { return m.OrganizationCode } return "" } func (m *OrganizationUserItem) GetUsername() string { if m != nil { return m.Username } return "" } func (m *OrganizationUserItem) GetPhone() string { if m != nil { return m.Phone } return "" } func (m *OrganizationUserItem) GetEmail() string { if m != nil { return m.Email } return "" } func (m *OrganizationUserItem) GetId() int64 { if m != nil { return m.Id } return 0 } func (m *OrganizationUserItem) GetCreatedAt() string { if m != nil { return m.CreatedAt } return "" } type OrganizationUserListReply struct { Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"` Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"` List []*OrganizationUserItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *OrganizationUserListReply) Reset() { *m = OrganizationUserListReply{} } func (m *OrganizationUserListReply) String() string { return proto.CompactTextString(m) } func (*OrganizationUserListReply) ProtoMessage() {} func (*OrganizationUserListReply) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{19} } func (m *OrganizationUserListReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_OrganizationUserListReply.Unmarshal(m, b) } func (m *OrganizationUserListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_OrganizationUserListReply.Marshal(b, m, deterministic) } func (m *OrganizationUserListReply) XXX_Merge(src proto.Message) { xxx_messageInfo_OrganizationUserListReply.Merge(m, src) } func (m *OrganizationUserListReply) XXX_Size() int { return xxx_messageInfo_OrganizationUserListReply.Size(m) } func (m *OrganizationUserListReply) XXX_DiscardUnknown() { xxx_messageInfo_OrganizationUserListReply.DiscardUnknown(m) } var xxx_messageInfo_OrganizationUserListReply proto.InternalMessageInfo func (m *OrganizationUserListReply) GetTotal() int64 { if m != nil { return m.Total } return 0 } func (m *OrganizationUserListReply) GetPage() int64 { if m != nil { return m.Page } return 0 } func (m *OrganizationUserListReply) GetList() []*OrganizationUserItem { if m != nil { return m.List } return nil } type OrganizationUserUpdateRequest 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"` Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone"` Email string `protobuf:"bytes,4,opt,name=email,proto3" json:"email"` Id int64 `protobuf:"varint,5,opt,name=id,proto3" json:"id"` Password string `protobuf:"bytes,6,opt,name=password,proto3" json:"password"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *OrganizationUserUpdateRequest) Reset() { *m = OrganizationUserUpdateRequest{} } func (m *OrganizationUserUpdateRequest) String() string { return proto.CompactTextString(m) } func (*OrganizationUserUpdateRequest) ProtoMessage() {} func (*OrganizationUserUpdateRequest) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{20} } func (m *OrganizationUserUpdateRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_OrganizationUserUpdateRequest.Unmarshal(m, b) } func (m *OrganizationUserUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_OrganizationUserUpdateRequest.Marshal(b, m, deterministic) } func (m *OrganizationUserUpdateRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_OrganizationUserUpdateRequest.Merge(m, src) } func (m *OrganizationUserUpdateRequest) XXX_Size() int { return xxx_messageInfo_OrganizationUserUpdateRequest.Size(m) } func (m *OrganizationUserUpdateRequest) XXX_DiscardUnknown() { xxx_messageInfo_OrganizationUserUpdateRequest.DiscardUnknown(m) } var xxx_messageInfo_OrganizationUserUpdateRequest proto.InternalMessageInfo func (m *OrganizationUserUpdateRequest) GetOrganizationCode() string { if m != nil { return m.OrganizationCode } return "" } func (m *OrganizationUserUpdateRequest) GetUsername() string { if m != nil { return m.Username } return "" } func (m *OrganizationUserUpdateRequest) GetPhone() string { if m != nil { return m.Phone } return "" } func (m *OrganizationUserUpdateRequest) GetEmail() string { if m != nil { return m.Email } return "" } func (m *OrganizationUserUpdateRequest) GetId() int64 { if m != nil { return m.Id } return 0 } func (m *OrganizationUserUpdateRequest) GetPassword() string { if m != nil { return m.Password } return "" } type OrganizationUserUpdateReply struct { Origin *OrganizationUserUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *OrganizationUserUpdateReply) Reset() { *m = OrganizationUserUpdateReply{} } func (m *OrganizationUserUpdateReply) String() string { return proto.CompactTextString(m) } func (*OrganizationUserUpdateReply) ProtoMessage() {} func (*OrganizationUserUpdateReply) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{21} } func (m *OrganizationUserUpdateReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_OrganizationUserUpdateReply.Unmarshal(m, b) } func (m *OrganizationUserUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_OrganizationUserUpdateReply.Marshal(b, m, deterministic) } func (m *OrganizationUserUpdateReply) XXX_Merge(src proto.Message) { xxx_messageInfo_OrganizationUserUpdateReply.Merge(m, src) } func (m *OrganizationUserUpdateReply) XXX_Size() int { return xxx_messageInfo_OrganizationUserUpdateReply.Size(m) } func (m *OrganizationUserUpdateReply) XXX_DiscardUnknown() { xxx_messageInfo_OrganizationUserUpdateReply.DiscardUnknown(m) } var xxx_messageInfo_OrganizationUserUpdateReply proto.InternalMessageInfo func (m *OrganizationUserUpdateReply) GetOrigin() *OrganizationUserUpdateRequest { if m != nil { return m.Origin } return nil } type OrganizationUserResetPasswordRequest struct { OrganizationCode string `protobuf:"bytes,1,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"` Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id"` Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *OrganizationUserResetPasswordRequest) Reset() { *m = OrganizationUserResetPasswordRequest{} } func (m *OrganizationUserResetPasswordRequest) String() string { return proto.CompactTextString(m) } func (*OrganizationUserResetPasswordRequest) ProtoMessage() {} func (*OrganizationUserResetPasswordRequest) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{22} } func (m *OrganizationUserResetPasswordRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_OrganizationUserResetPasswordRequest.Unmarshal(m, b) } func (m *OrganizationUserResetPasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_OrganizationUserResetPasswordRequest.Marshal(b, m, deterministic) } func (m *OrganizationUserResetPasswordRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_OrganizationUserResetPasswordRequest.Merge(m, src) } func (m *OrganizationUserResetPasswordRequest) XXX_Size() int { return xxx_messageInfo_OrganizationUserResetPasswordRequest.Size(m) } func (m *OrganizationUserResetPasswordRequest) XXX_DiscardUnknown() { xxx_messageInfo_OrganizationUserResetPasswordRequest.DiscardUnknown(m) } var xxx_messageInfo_OrganizationUserResetPasswordRequest proto.InternalMessageInfo func (m *OrganizationUserResetPasswordRequest) GetOrganizationCode() string { if m != nil { return m.OrganizationCode } return "" } func (m *OrganizationUserResetPasswordRequest) GetId() int64 { if m != nil { return m.Id } return 0 } func (m *OrganizationUserResetPasswordRequest) GetPassword() string { if m != nil { return m.Password } return "" } type OrganizationUserResetPasswordReply struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *OrganizationUserResetPasswordReply) Reset() { *m = OrganizationUserResetPasswordReply{} } func (m *OrganizationUserResetPasswordReply) String() string { return proto.CompactTextString(m) } func (*OrganizationUserResetPasswordReply) ProtoMessage() {} func (*OrganizationUserResetPasswordReply) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{23} } func (m *OrganizationUserResetPasswordReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_OrganizationUserResetPasswordReply.Unmarshal(m, b) } func (m *OrganizationUserResetPasswordReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_OrganizationUserResetPasswordReply.Marshal(b, m, deterministic) } func (m *OrganizationUserResetPasswordReply) XXX_Merge(src proto.Message) { xxx_messageInfo_OrganizationUserResetPasswordReply.Merge(m, src) } func (m *OrganizationUserResetPasswordReply) XXX_Size() int { return xxx_messageInfo_OrganizationUserResetPasswordReply.Size(m) } func (m *OrganizationUserResetPasswordReply) XXX_DiscardUnknown() { xxx_messageInfo_OrganizationUserResetPasswordReply.DiscardUnknown(m) } var xxx_messageInfo_OrganizationUserResetPasswordReply proto.InternalMessageInfo type SystemLogAddRequest struct { Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username"` Uid int64 `protobuf:"varint,2,opt,name=uid,proto3" json:"uid"` Action string `protobuf:"bytes,3,opt,name=action,proto3" json:"action"` Module string `protobuf:"bytes,4,opt,name=module,proto3" json:"module"` CreatedAt int64 `protobuf:"varint,6,opt,name=created_at,json=createdAt,proto3" json:"created_at"` Origin string `protobuf:"bytes,7,opt,name=origin,proto3" json:"origin"` Target string `protobuf:"bytes,8,opt,name=target,proto3" json:"target"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *SystemLogAddRequest) Reset() { *m = SystemLogAddRequest{} } func (m *SystemLogAddRequest) String() string { return proto.CompactTextString(m) } func (*SystemLogAddRequest) ProtoMessage() {} func (*SystemLogAddRequest) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{24} } func (m *SystemLogAddRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SystemLogAddRequest.Unmarshal(m, b) } func (m *SystemLogAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_SystemLogAddRequest.Marshal(b, m, deterministic) } func (m *SystemLogAddRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_SystemLogAddRequest.Merge(m, src) } func (m *SystemLogAddRequest) XXX_Size() int { return xxx_messageInfo_SystemLogAddRequest.Size(m) } func (m *SystemLogAddRequest) XXX_DiscardUnknown() { xxx_messageInfo_SystemLogAddRequest.DiscardUnknown(m) } var xxx_messageInfo_SystemLogAddRequest proto.InternalMessageInfo func (m *SystemLogAddRequest) GetUsername() string { if m != nil { return m.Username } return "" } func (m *SystemLogAddRequest) GetUid() int64 { if m != nil { return m.Uid } return 0 } func (m *SystemLogAddRequest) GetAction() string { if m != nil { return m.Action } return "" } func (m *SystemLogAddRequest) GetModule() string { if m != nil { return m.Module } return "" } func (m *SystemLogAddRequest) GetCreatedAt() int64 { if m != nil { return m.CreatedAt } return 0 } func (m *SystemLogAddRequest) GetOrigin() string { if m != nil { return m.Origin } return "" } func (m *SystemLogAddRequest) GetTarget() string { if m != nil { return m.Target } return "" } type SystemLogAddReply struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *SystemLogAddReply) Reset() { *m = SystemLogAddReply{} } func (m *SystemLogAddReply) String() string { return proto.CompactTextString(m) } func (*SystemLogAddReply) ProtoMessage() {} func (*SystemLogAddReply) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{25} } func (m *SystemLogAddReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SystemLogAddReply.Unmarshal(m, b) } func (m *SystemLogAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_SystemLogAddReply.Marshal(b, m, deterministic) } func (m *SystemLogAddReply) XXX_Merge(src proto.Message) { xxx_messageInfo_SystemLogAddReply.Merge(m, src) } func (m *SystemLogAddReply) XXX_Size() int { return xxx_messageInfo_SystemLogAddReply.Size(m) } func (m *SystemLogAddReply) XXX_DiscardUnknown() { xxx_messageInfo_SystemLogAddReply.DiscardUnknown(m) } var xxx_messageInfo_SystemLogAddReply proto.InternalMessageInfo type SystemLogListRequest 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"` Username string `protobuf:"bytes,3,opt,name=username,proto3" json:"username"` Action string `protobuf:"bytes,4,opt,name=action,proto3" json:"action"` Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter"` Module string `protobuf:"bytes,6,opt,name=module,proto3" json:"module"` Start int64 `protobuf:"varint,7,opt,name=start,proto3" json:"start"` End int64 `protobuf:"varint,8,opt,name=end,proto3" json:"end"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *SystemLogListRequest) Reset() { *m = SystemLogListRequest{} } func (m *SystemLogListRequest) String() string { return proto.CompactTextString(m) } func (*SystemLogListRequest) ProtoMessage() {} func (*SystemLogListRequest) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{26} } func (m *SystemLogListRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SystemLogListRequest.Unmarshal(m, b) } func (m *SystemLogListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_SystemLogListRequest.Marshal(b, m, deterministic) } func (m *SystemLogListRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_SystemLogListRequest.Merge(m, src) } func (m *SystemLogListRequest) XXX_Size() int { return xxx_messageInfo_SystemLogListRequest.Size(m) } func (m *SystemLogListRequest) XXX_DiscardUnknown() { xxx_messageInfo_SystemLogListRequest.DiscardUnknown(m) } var xxx_messageInfo_SystemLogListRequest proto.InternalMessageInfo func (m *SystemLogListRequest) GetPage() int64 { if m != nil { return m.Page } return 0 } func (m *SystemLogListRequest) GetPageSize() int64 { if m != nil { return m.PageSize } return 0 } func (m *SystemLogListRequest) GetUsername() string { if m != nil { return m.Username } return "" } func (m *SystemLogListRequest) GetAction() string { if m != nil { return m.Action } return "" } func (m *SystemLogListRequest) GetFilter() string { if m != nil { return m.Filter } return "" } func (m *SystemLogListRequest) GetModule() string { if m != nil { return m.Module } return "" } func (m *SystemLogListRequest) GetStart() int64 { if m != nil { return m.Start } return 0 } func (m *SystemLogListRequest) GetEnd() int64 { if m != nil { return m.End } return 0 } type SystemLogItem struct { // 账号名 Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username"` // 账号id Uid int64 `protobuf:"varint,2,opt,name=uid,proto3" json:"uid"` // 行为 Action string `protobuf:"bytes,3,opt,name=action,proto3" json:"action"` // 模块 Module string `protobuf:"bytes,4,opt,name=module,proto3" json:"module"` // 时间 CreatedAt string `protobuf:"bytes,6,opt,name=created_at,json=createdAt,proto3" json:"created_at"` // 修改前信息 Origin string `protobuf:"bytes,7,opt,name=origin,proto3" json:"origin"` // 修改后信息 Target string `protobuf:"bytes,8,opt,name=target,proto3" json:"target"` // 日志id Id int64 `protobuf:"varint,9,opt,name=id,proto3" json:"id"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *SystemLogItem) Reset() { *m = SystemLogItem{} } func (m *SystemLogItem) String() string { return proto.CompactTextString(m) } func (*SystemLogItem) ProtoMessage() {} func (*SystemLogItem) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{27} } func (m *SystemLogItem) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SystemLogItem.Unmarshal(m, b) } func (m *SystemLogItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_SystemLogItem.Marshal(b, m, deterministic) } func (m *SystemLogItem) XXX_Merge(src proto.Message) { xxx_messageInfo_SystemLogItem.Merge(m, src) } func (m *SystemLogItem) XXX_Size() int { return xxx_messageInfo_SystemLogItem.Size(m) } func (m *SystemLogItem) XXX_DiscardUnknown() { xxx_messageInfo_SystemLogItem.DiscardUnknown(m) } var xxx_messageInfo_SystemLogItem proto.InternalMessageInfo func (m *SystemLogItem) GetUsername() string { if m != nil { return m.Username } return "" } func (m *SystemLogItem) GetUid() int64 { if m != nil { return m.Uid } return 0 } func (m *SystemLogItem) GetAction() string { if m != nil { return m.Action } return "" } func (m *SystemLogItem) GetModule() string { if m != nil { return m.Module } return "" } func (m *SystemLogItem) GetCreatedAt() string { if m != nil { return m.CreatedAt } return "" } func (m *SystemLogItem) GetOrigin() string { if m != nil { return m.Origin } return "" } func (m *SystemLogItem) GetTarget() string { if m != nil { return m.Target } return "" } func (m *SystemLogItem) GetId() int64 { if m != nil { return m.Id } return 0 } type SystemLogListReply struct { Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"` Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"` List []*SystemLogItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *SystemLogListReply) Reset() { *m = SystemLogListReply{} } func (m *SystemLogListReply) String() string { return proto.CompactTextString(m) } func (*SystemLogListReply) ProtoMessage() {} func (*SystemLogListReply) Descriptor() ([]byte, []int) { return fileDescriptor_86a7260ebdc12f47, []int{28} } func (m *SystemLogListReply) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SystemLogListReply.Unmarshal(m, b) } func (m *SystemLogListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_SystemLogListReply.Marshal(b, m, deterministic) } func (m *SystemLogListReply) XXX_Merge(src proto.Message) { xxx_messageInfo_SystemLogListReply.Merge(m, src) } func (m *SystemLogListReply) XXX_Size() int { return xxx_messageInfo_SystemLogListReply.Size(m) } func (m *SystemLogListReply) XXX_DiscardUnknown() { xxx_messageInfo_SystemLogListReply.DiscardUnknown(m) } var xxx_messageInfo_SystemLogListReply proto.InternalMessageInfo func (m *SystemLogListReply) GetTotal() int64 { if m != nil { return m.Total } return 0 } func (m *SystemLogListReply) GetPage() int64 { if m != nil { return m.Page } return 0 } func (m *SystemLogListReply) GetList() []*SystemLogItem { if m != nil { return m.List } return nil } 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{29} } 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{30} } 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((*OrganizationUserListRequest)(nil), "pb_v1.OrganizationUserListRequest") proto.RegisterType((*OrganizationUserItem)(nil), "pb_v1.OrganizationUserItem") proto.RegisterType((*OrganizationUserListReply)(nil), "pb_v1.OrganizationUserListReply") proto.RegisterType((*OrganizationUserUpdateRequest)(nil), "pb_v1.OrganizationUserUpdateRequest") proto.RegisterType((*OrganizationUserUpdateReply)(nil), "pb_v1.OrganizationUserUpdateReply") proto.RegisterType((*OrganizationUserResetPasswordRequest)(nil), "pb_v1.OrganizationUserResetPasswordRequest") proto.RegisterType((*OrganizationUserResetPasswordReply)(nil), "pb_v1.OrganizationUserResetPasswordReply") proto.RegisterType((*SystemLogAddRequest)(nil), "pb_v1.SystemLogAddRequest") proto.RegisterType((*SystemLogAddReply)(nil), "pb_v1.SystemLogAddReply") proto.RegisterType((*SystemLogListRequest)(nil), "pb_v1.SystemLogListRequest") proto.RegisterType((*SystemLogItem)(nil), "pb_v1.SystemLogItem") proto.RegisterType((*SystemLogListReply)(nil), "pb_v1.SystemLogListReply") 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{ // 929 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0x4d, 0x6f, 0x23, 0x45, 0x10, 0xd5, 0xcc, 0xd8, 0x5e, 0xbb, 0x36, 0xc0, 0x66, 0xe2, 0x6c, 0xec, 0x84, 0xa0, 0xa8, 0x89, 0x44, 0x24, 0xb4, 0x89, 0x76, 0xb9, 0x70, 0xe0, 0x12, 0xb2, 0xac, 0x40, 0x1b, 0x01, 0x9a, 0xb0, 0x42, 0x82, 0x83, 0x35, 0x4e, 0x17, 0x76, 0xb3, 0xf3, 0xc5, 0x74, 0x3b, 0xe0, 0x20, 0xc4, 0xff, 0xe1, 0x80, 0x38, 0x73, 0x42, 0x9c, 0xb9, 0x20, 0xfe, 0x10, 0xea, 0x8f, 0x71, 0xda, 0xe3, 0x76, 0x58, 0xe3, 0x15, 0x9c, 0x3c, 0x55, 0xdd, 0xd3, 0x55, 0xef, 0xf5, 0xab, 0x9a, 0x32, 0x6c, 0xf0, 0x29, 0x17, 0x98, 0x1e, 0x17, 0x65, 0x2e, 0xf2, 0xb0, 0x59, 0x0c, 0x07, 0x57, 0x0f, 0xc9, 0x53, 0xd8, 0x3c, 0x2b, 0x31, 0x16, 0xf8, 0x8c, 0x63, 0x19, 0xe1, 0x37, 0x13, 0xe4, 0x22, 0xdc, 0x85, 0xf6, 0x84, 0x63, 0x99, 0xc5, 0x29, 0xf6, 0xbc, 0x03, 0xef, 0xa8, 0x13, 0xcd, 0x6c, 0xb9, 0x56, 0xc4, 0x9c, 0x7f, 0x9b, 0x97, 0xb4, 0xe7, 0xeb, 0xb5, 0xca, 0x26, 0x6f, 0xc2, 0x6b, 0xf6, 0x61, 0x45, 0x32, 0x0d, 0xef, 0x41, 0x30, 0x61, 0x54, 0x9d, 0x12, 0x44, 0xf2, 0x91, 0x3c, 0x81, 0x8d, 0xf3, 0x7c, 0xc4, 0xb2, 0x75, 0x83, 0xbd, 0x01, 0x60, 0xce, 0x71, 0xc7, 0xf9, 0x1c, 0xb6, 0xcf, 0xc6, 0x71, 0x36, 0xc2, 0x4f, 0xcd, 0x1b, 0x55, 0xc0, 0x85, 0xad, 0xb7, 0x85, 0x91, 0xbb, 0xf3, 0x84, 0xf6, 0x02, 0xe5, 0x96, 0x8f, 0x64, 0x1b, 0xb6, 0xea, 0x07, 0x17, 0xc9, 0x94, 0xfc, 0x00, 0x7d, 0x0d, 0xfe, 0x93, 0x72, 0x14, 0x67, 0xec, 0x3a, 0x16, 0x2c, 0x9f, 0x81, 0x7c, 0x1b, 0x36, 0x73, 0xcb, 0x3d, 0xb0, 0xd0, 0xde, 0xb3, 0x17, 0x3e, 0x96, 0xa8, 0xbb, 0xd0, 0x4c, 0xf3, 0x4c, 0x8c, 0x55, 0x2e, 0x41, 0xa4, 0x8d, 0x70, 0x1f, 0x80, 0xf1, 0x01, 0x65, 0x3c, 0x1e, 0x26, 0xa8, 0xf2, 0x69, 0x47, 0x1d, 0xc6, 0x1f, 0x6b, 0x07, 0x79, 0x02, 0x3b, 0xae, 0xf0, 0x92, 0x9b, 0x7a, 0xf0, 0xcb, 0x9c, 0x3a, 0x83, 0x9f, 0xe5, 0x14, 0xc9, 0x87, 0xd0, 0x7f, 0x8c, 0x09, 0xbe, 0x18, 0x8c, 0x5b, 0x4f, 0xea, 0xc3, 0x8e, 0xeb, 0x24, 0xc9, 0xd5, 0x9f, 0x1e, 0x6c, 0xd8, 0xde, 0xd5, 0xf8, 0x71, 0x66, 0xe1, 0xbb, 0xb3, 0x08, 0xfb, 0xd0, 0xc6, 0x8c, 0x0e, 0x04, 0x4b, 0x35, 0x69, 0x41, 0x74, 0x07, 0x33, 0xfa, 0x19, 0x4b, 0xb1, 0xc6, 0x68, 0xa3, 0xc6, 0x68, 0xb8, 0x07, 0x1d, 0xc6, 0x07, 0xf8, 0x5d, 0xc1, 0x4a, 0xec, 0x35, 0xd5, 0x6a, 0x9b, 0xf1, 0x0f, 0x94, 0x2d, 0x65, 0xf1, 0x1c, 0xa7, 0xbd, 0x96, 0x96, 0xc5, 0x73, 0x9c, 0x92, 0x9f, 0x3c, 0xe8, 0x3f, 0x2b, 0xe8, 0xff, 0x25, 0x00, 0x37, 0x2b, 0x8d, 0x25, 0x77, 0x73, 0x01, 0x3b, 0xae, 0x5c, 0xa5, 0x5a, 0xde, 0x85, 0x56, 0x5e, 0xb2, 0x11, 0xcb, 0x54, 0x7a, 0x77, 0x1f, 0x1d, 0x1c, 0xab, 0x4e, 0x71, 0xbc, 0x14, 0x5b, 0x64, 0xf6, 0x93, 0x21, 0xec, 0xd8, 0xcb, 0xe7, 0x8c, 0x8b, 0x0a, 0x7e, 0x08, 0x8d, 0x22, 0x1e, 0xa1, 0x29, 0x3a, 0xf5, 0x2c, 0xf9, 0x95, 0xbf, 0x03, 0xce, 0xae, 0xd1, 0x20, 0x6d, 0x4b, 0xc7, 0x05, 0xbb, 0xc6, 0xf0, 0x3e, 0xb4, 0xbe, 0x62, 0x89, 0xc0, 0xd2, 0x54, 0x9e, 0xb1, 0xc8, 0xd7, 0xb0, 0xbd, 0x18, 0x43, 0xa6, 0xdd, 0x85, 0xa6, 0xc8, 0x45, 0x9c, 0x98, 0x10, 0xda, 0x98, 0xc5, 0xf5, 0xad, 0xb8, 0x6f, 0x41, 0x23, 0x61, 0x5c, 0xf4, 0x82, 0x83, 0xe0, 0xe8, 0xee, 0xa3, 0x2d, 0x03, 0x6f, 0x0e, 0x98, 0xda, 0x40, 0x7e, 0xf1, 0x60, 0x7f, 0xb1, 0xa6, 0xec, 0x46, 0xb9, 0x4a, 0x3d, 0xcc, 0x35, 0x3a, 0xff, 0x96, 0x46, 0x17, 0xd4, 0x3a, 0x50, 0x17, 0x9a, 0xc5, 0x38, 0xcf, 0xaa, 0xcb, 0xd4, 0x86, 0xf4, 0x62, 0x1a, 0xb3, 0x44, 0x29, 0xb3, 0x13, 0x69, 0x83, 0x9c, 0xc0, 0xde, 0xb2, 0x8c, 0xdd, 0x5d, 0xf2, 0x7b, 0xd8, 0xab, 0x6f, 0x5d, 0xeb, 0xde, 0x9c, 0x8c, 0x04, 0x4b, 0x54, 0xf8, 0xab, 0x07, 0xdd, 0x7a, 0xf4, 0x8f, 0x04, 0xa6, 0x2f, 0x8f, 0xd7, 0x19, 0x77, 0x81, 0x93, 0xbb, 0x86, 0xc5, 0x5d, 0xf8, 0x2a, 0xf8, 0x8c, 0x2a, 0x3a, 0x83, 0xc8, 0x67, 0x54, 0xd6, 0xdb, 0xa5, 0xe2, 0x92, 0x0e, 0x62, 0x61, 0x2a, 0xbd, 0x63, 0x3c, 0xa7, 0x82, 0x5c, 0x41, 0xdf, 0xcd, 0xdc, 0x6a, 0x6a, 0x3c, 0x99, 0x53, 0xe3, 0x9e, 0x43, 0x8d, 0x15, 0x2b, 0x46, 0x95, 0xbf, 0x79, 0xb0, 0x5f, 0x5f, 0xd6, 0xb5, 0xf9, 0xd2, 0x55, 0xb9, 0x0e, 0x7b, 0xb6, 0xa2, 0x5b, 0xb5, 0x4f, 0xf7, 0x97, 0x8b, 0xa2, 0xab, 0x10, 0x48, 0xf2, 0xde, 0xab, 0x75, 0xa0, 0xc3, 0x25, 0xa4, 0xcc, 0xa1, 0x9e, 0x75, 0xa1, 0x1f, 0xe1, 0x70, 0x51, 0xfc, 0x1c, 0x45, 0x7d, 0x0c, 0x58, 0x89, 0x25, 0x8d, 0xce, 0x77, 0xa2, 0xab, 0xd5, 0x2b, 0x39, 0x04, 0xf2, 0x0f, 0x09, 0xc8, 0x4f, 0xe0, 0xef, 0x1e, 0x6c, 0x5d, 0xa8, 0x81, 0xec, 0x3c, 0x1f, 0x9d, 0x52, 0xfa, 0x22, 0xe3, 0x90, 0x29, 0x5f, 0xff, 0x66, 0x72, 0xb9, 0x0f, 0xad, 0xf8, 0x52, 0x46, 0xa9, 0xda, 0xa4, 0xb6, 0xa4, 0x3f, 0xcd, 0xe9, 0x24, 0xa9, 0x9a, 0x86, 0xb1, 0x1c, 0x9a, 0x0e, 0x2c, 0x4d, 0xcb, 0xd7, 0x0c, 0xf3, 0x77, 0xf4, 0x6b, 0xda, 0x92, 0x7e, 0x11, 0x97, 0x23, 0x14, 0xbd, 0xb6, 0xf6, 0x6b, 0x8b, 0x6c, 0xc1, 0xe6, 0x3c, 0x06, 0x89, 0xec, 0x2f, 0x0f, 0xba, 0x33, 0xef, 0x5a, 0xcd, 0xc4, 0xe6, 0x22, 0xa8, 0x71, 0x71, 0x83, 0xbc, 0x51, 0x47, 0x6e, 0x3e, 0x1c, 0x4d, 0xfb, 0xc3, 0x61, 0x31, 0xd2, 0x9a, 0x63, 0xa4, 0x0b, 0x4d, 0x2e, 0xe2, 0x52, 0x28, 0xc4, 0x41, 0xa4, 0x0d, 0xc9, 0x34, 0x66, 0x54, 0xa1, 0x0d, 0x22, 0xf9, 0x48, 0xfe, 0xf0, 0xe0, 0x95, 0x19, 0x2a, 0xd5, 0xa4, 0xfe, 0xeb, 0x9b, 0xea, 0xac, 0x71, 0x53, 0x46, 0xc0, 0x9d, 0x4a, 0xc0, 0x64, 0x0c, 0x61, 0xed, 0x8e, 0x56, 0x6b, 0x5b, 0x47, 0x73, 0x6d, 0xab, 0x6b, 0x2a, 0x74, 0x8e, 0x20, 0xd3, 0xaf, 0x8e, 0x61, 0xd7, 0x2e, 0x87, 0xa7, 0x38, 0x3d, 0x9d, 0x88, 0xb1, 0x35, 0x8c, 0xcb, 0x39, 0xca, 0xbb, 0x99, 0xa3, 0x7e, 0xf6, 0xa0, 0xe7, 0x7c, 0x61, 0xd5, 0x51, 0xd6, 0x3d, 0x73, 0xf9, 0x4b, 0x66, 0xae, 0x7f, 0x3d, 0x27, 0xbe, 0xff, 0xfa, 0x17, 0xbb, 0x97, 0xc5, 0x03, 0xfd, 0xe7, 0xea, 0x41, 0x1a, 0x67, 0xf1, 0x08, 0x53, 0xcc, 0xc4, 0x49, 0x31, 0x3c, 0xb9, 0x7a, 0x38, 0x6c, 0xa9, 0xbf, 0x5b, 0xef, 0xfc, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xf5, 0x10, 0x46, 0x34, 0x7e, 0x0d, 0x00, 0x00, }