Create & Init Project...

This commit is contained in:
2019-04-22 18:49:16 +08:00
commit fc4fa37393
25440 changed files with 4054998 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
load(
"@io_bazel_rules_go//proto:def.bzl",
"go_proto_library",
)
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
)
go_library(
name = "go_default_library",
srcs = [
"exp.go",
"model.go",
],
embed = [":model_go_proto"],
importpath = "go-common/app/job/live-userexp/model",
tags = ["automanaged"],
visibility = ["//visibility:public"],
deps = [
"@com_github_gogo_protobuf//gogoproto:go_default_library",
"@com_github_golang_protobuf//proto:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)
proto_library(
name = "model_proto",
srcs = ["exp.proto"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
deps = ["@gogo_special_proto//github.com/gogo/protobuf/gogoproto"],
)
go_proto_library(
name = "model_go_proto",
compilers = ["@io_bazel_rules_go//proto:gogofast_proto"],
importpath = "go-common/app/job/live-userexp/model",
proto = ":model_proto",
tags = ["automanaged"],
visibility = ["//visibility:public"],
deps = ["@com_github_gogo_protobuf//gogoproto:go_default_library"],
)

View File

@@ -0,0 +1,167 @@
package model
const (
_MasterLevelMax = int32(40)
_UserLevelMax = int32(60)
_ColorLevel1 = int32(9868950)
_ColorLevel2 = int32(6406234)
_ColorLevel3 = int32(5805790)
_ColorLevel4 = int32(9868950)
)
var (
_masterLevelMap = []int64{
0, // 0
5000, // 1
20000, // 2
47000, // 3
92000, // 4
210000, // 5
406000, // 6
716000, // 7
1176000, // 8
1806000, // 9
2716000, // 10
3961000, // 11
5641000, // 12
7881000, // 13
10981000, // 14
15481000, // 15
22681000, // 16
31981000, // 17
44281000, // 18
60281000, // 19
81681000, // 20
113881000, // 21
159481000, // 22
221481000, // 23
300481000, // 24
398481000, // 25
522981000, // 26
690981000, // 27
901381000, // 28
1188381000, // 29
1561381000, // 30
2061381000, // 31
2731381000, // 32
3641381000, // 33
4781381000, // 34
6201381000, // 35
7951381000, // 36
9951381000, // 37
12201381000, // 38
14701381000, // 39
}
_userLevelMap = []int64{
100000, // 0
200000, // 1
300000, // 2
400000, // 3
500000, // 4
600000, // 5
700000, // 6
800000, // 7
900000, // 8
1000000, // 9
1800000, // 10
2600000, // 11
3400000, // 12
4200000, // 13
5000000, // 14
6000000, // 15
7000000, // 16
8000000, // 17
9000000, // 18
10000000, // 19
18000000, // 20
26000000, // 21
34000000, // 22
42000000, // 23
50000000, // 24
60000000, // 25
70000000, // 26
80000000, // 27
90000000, // 28
100000000, // 29
110000000, // 30
120000000, // 31
130000000, // 32
140000000, // 33
150000000, // 34
180000000, // 35
210000000, // 36
240000000, // 37
270000000, // 38
300000000, // 39
340000000, // 40
380000000, // 41
420000000, // 42
460000000, // 43
500000000, // 44
550000000, // 45
600000000, // 46
700000000, // 47
800000000, // 48
1000000000, // 49
1200000000, // 50
1400000000, // 51
1600000000, // 52
1800000000, // 53
2000000000, // 54
2200000000, // 55
2400000000, // 56
2600000000, // 57
2800000000, // 58
3000000000, // 59
4000000000, // 60
}
)
// FormatLevel 计算等级
func FormatLevel(exp *Exp) (level *Level) {
level = &Level{Uid: exp.Uid, Uexp: exp.Uexp, Rexp: exp.Rexp, Ulevel: -1, Rlevel: -1, Color: 0}
level.Uid = exp.Uid
level.Uexp = exp.Uexp
level.Rexp = exp.Rexp
// 主播等级
for rlevel, v := range _masterLevelMap {
if exp.Rexp < v {
level.Rlevel = int32(rlevel)
level.Rnext = v - exp.Rexp
break
}
}
if level.Rlevel == -1 {
level.Rlevel = _MasterLevelMax
}
// 用户等级
for ulevel, v := range _userLevelMap {
if exp.Uexp < v {
level.Ulevel = int32(ulevel)
level.Unext = v - exp.Uexp
break
}
}
if level.Ulevel == -1 {
level.Ulevel = _UserLevelMax
}
// 等级颜色
switch {
case level.Ulevel <= 10:
level.Color = _ColorLevel1
case level.Ulevel <= 20:
level.Color = _ColorLevel2
case level.Ulevel <= 40:
level.Color = _ColorLevel3
case level.Ulevel < 50:
level.Color = _ColorLevel4
default:
level.Color = _ColorLevel4
}
return
}

View File

@@ -0,0 +1,735 @@
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: exp.proto
/*
Package model is a generated protocol buffer package.
It is generated from these files:
exp.proto
It has these top-level messages:
Exp
Level
*/
package model
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import _ "github.com/gogo/protobuf/gogoproto"
import io "io"
// 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.ProtoPackageIsVersion2 // please upgrade the proto package
type Exp struct {
Uid int64 `protobuf:"varint,1,opt,name=Uid,proto3" json:"uid"`
Uexp int64 `protobuf:"varint,2,opt,name=Uexp,proto3" json:"uexp"`
Rexp int64 `protobuf:"varint,3,opt,name=Rexp,proto3" json:"rexp"`
}
func (m *Exp) Reset() { *m = Exp{} }
func (m *Exp) String() string { return proto.CompactTextString(m) }
func (*Exp) ProtoMessage() {}
func (*Exp) Descriptor() ([]byte, []int) { return fileDescriptorExp, []int{0} }
func (m *Exp) GetUid() int64 {
if m != nil {
return m.Uid
}
return 0
}
func (m *Exp) GetUexp() int64 {
if m != nil {
return m.Uexp
}
return 0
}
func (m *Exp) GetRexp() int64 {
if m != nil {
return m.Rexp
}
return 0
}
type Level struct {
Uid int64 `protobuf:"varint,1,opt,name=Uid,proto3" json:"uid"`
Uexp int64 `protobuf:"varint,2,opt,name=Uexp,proto3" json:"uexp"`
Rexp int64 `protobuf:"varint,3,opt,name=Rexp,proto3" json:"rexp"`
Ulevel int32 `protobuf:"varint,4,opt,name=Ulevel,proto3" json:"ulevel"`
Rlevel int32 `protobuf:"varint,5,opt,name=Rlevel,proto3" json:"rlevel"`
Color int32 `protobuf:"varint,6,opt,name=Color,proto3" json:"color"`
Unext int64 `protobuf:"varint,7,opt,name=Unext,proto3" json:"unext"`
Rnext int64 `protobuf:"varint,8,opt,name=Rnext,proto3" json:"rnext"`
}
func (m *Level) Reset() { *m = Level{} }
func (m *Level) String() string { return proto.CompactTextString(m) }
func (*Level) ProtoMessage() {}
func (*Level) Descriptor() ([]byte, []int) { return fileDescriptorExp, []int{1} }
func (m *Level) GetUid() int64 {
if m != nil {
return m.Uid
}
return 0
}
func (m *Level) GetUexp() int64 {
if m != nil {
return m.Uexp
}
return 0
}
func (m *Level) GetRexp() int64 {
if m != nil {
return m.Rexp
}
return 0
}
func (m *Level) GetUlevel() int32 {
if m != nil {
return m.Ulevel
}
return 0
}
func (m *Level) GetRlevel() int32 {
if m != nil {
return m.Rlevel
}
return 0
}
func (m *Level) GetColor() int32 {
if m != nil {
return m.Color
}
return 0
}
func (m *Level) GetUnext() int64 {
if m != nil {
return m.Unext
}
return 0
}
func (m *Level) GetRnext() int64 {
if m != nil {
return m.Rnext
}
return 0
}
func init() {
proto.RegisterType((*Exp)(nil), "model.Exp")
proto.RegisterType((*Level)(nil), "model.Level")
}
func (m *Exp) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *Exp) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if m.Uid != 0 {
dAtA[i] = 0x8
i++
i = encodeVarintExp(dAtA, i, uint64(m.Uid))
}
if m.Uexp != 0 {
dAtA[i] = 0x10
i++
i = encodeVarintExp(dAtA, i, uint64(m.Uexp))
}
if m.Rexp != 0 {
dAtA[i] = 0x18
i++
i = encodeVarintExp(dAtA, i, uint64(m.Rexp))
}
return i, nil
}
func (m *Level) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *Level) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if m.Uid != 0 {
dAtA[i] = 0x8
i++
i = encodeVarintExp(dAtA, i, uint64(m.Uid))
}
if m.Uexp != 0 {
dAtA[i] = 0x10
i++
i = encodeVarintExp(dAtA, i, uint64(m.Uexp))
}
if m.Rexp != 0 {
dAtA[i] = 0x18
i++
i = encodeVarintExp(dAtA, i, uint64(m.Rexp))
}
if m.Ulevel != 0 {
dAtA[i] = 0x20
i++
i = encodeVarintExp(dAtA, i, uint64(m.Ulevel))
}
if m.Rlevel != 0 {
dAtA[i] = 0x28
i++
i = encodeVarintExp(dAtA, i, uint64(m.Rlevel))
}
if m.Color != 0 {
dAtA[i] = 0x30
i++
i = encodeVarintExp(dAtA, i, uint64(m.Color))
}
if m.Unext != 0 {
dAtA[i] = 0x38
i++
i = encodeVarintExp(dAtA, i, uint64(m.Unext))
}
if m.Rnext != 0 {
dAtA[i] = 0x40
i++
i = encodeVarintExp(dAtA, i, uint64(m.Rnext))
}
return i, nil
}
func encodeVarintExp(dAtA []byte, offset int, v uint64) int {
for v >= 1<<7 {
dAtA[offset] = uint8(v&0x7f | 0x80)
v >>= 7
offset++
}
dAtA[offset] = uint8(v)
return offset + 1
}
func (m *Exp) Size() (n int) {
var l int
_ = l
if m.Uid != 0 {
n += 1 + sovExp(uint64(m.Uid))
}
if m.Uexp != 0 {
n += 1 + sovExp(uint64(m.Uexp))
}
if m.Rexp != 0 {
n += 1 + sovExp(uint64(m.Rexp))
}
return n
}
func (m *Level) Size() (n int) {
var l int
_ = l
if m.Uid != 0 {
n += 1 + sovExp(uint64(m.Uid))
}
if m.Uexp != 0 {
n += 1 + sovExp(uint64(m.Uexp))
}
if m.Rexp != 0 {
n += 1 + sovExp(uint64(m.Rexp))
}
if m.Ulevel != 0 {
n += 1 + sovExp(uint64(m.Ulevel))
}
if m.Rlevel != 0 {
n += 1 + sovExp(uint64(m.Rlevel))
}
if m.Color != 0 {
n += 1 + sovExp(uint64(m.Color))
}
if m.Unext != 0 {
n += 1 + sovExp(uint64(m.Unext))
}
if m.Rnext != 0 {
n += 1 + sovExp(uint64(m.Rnext))
}
return n
}
func sovExp(x uint64) (n int) {
for {
n++
x >>= 7
if x == 0 {
break
}
}
return n
}
func sozExp(x uint64) (n int) {
return sovExp(uint64((x << 1) ^ uint64((int64(x) >> 63))))
}
func (m *Exp) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: Exp: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: Exp: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Uid", wireType)
}
m.Uid = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Uid |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 2:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Uexp", wireType)
}
m.Uexp = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Uexp |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 3:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Rexp", wireType)
}
m.Rexp = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Rexp |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
default:
iNdEx = preIndex
skippy, err := skipExp(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthExp
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *Level) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: Level: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: Level: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Uid", wireType)
}
m.Uid = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Uid |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 2:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Uexp", wireType)
}
m.Uexp = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Uexp |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 3:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Rexp", wireType)
}
m.Rexp = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Rexp |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 4:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Ulevel", wireType)
}
m.Ulevel = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Ulevel |= (int32(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 5:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Rlevel", wireType)
}
m.Rlevel = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Rlevel |= (int32(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 6:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Color", wireType)
}
m.Color = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Color |= (int32(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 7:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Unext", wireType)
}
m.Unext = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Unext |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
case 8:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Rnext", wireType)
}
m.Rnext = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowExp
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Rnext |= (int64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
default:
iNdEx = preIndex
skippy, err := skipExp(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthExp
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func skipExp(dAtA []byte) (n int, err error) {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowExp
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
wireType := int(wire & 0x7)
switch wireType {
case 0:
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowExp
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
iNdEx++
if dAtA[iNdEx-1] < 0x80 {
break
}
}
return iNdEx, nil
case 1:
iNdEx += 8
return iNdEx, nil
case 2:
var length int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowExp
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
length |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
iNdEx += length
if length < 0 {
return 0, ErrInvalidLengthExp
}
return iNdEx, nil
case 3:
for {
var innerWire uint64
var start int = iNdEx
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowExp
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
innerWire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
innerWireType := int(innerWire & 0x7)
if innerWireType == 4 {
break
}
next, err := skipExp(dAtA[start:])
if err != nil {
return 0, err
}
iNdEx = start + next
}
return iNdEx, nil
case 4:
return iNdEx, nil
case 5:
iNdEx += 4
return iNdEx, nil
default:
return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
}
}
panic("unreachable")
}
var (
ErrInvalidLengthExp = fmt.Errorf("proto: negative length found during unmarshaling")
ErrIntOverflowExp = fmt.Errorf("proto: integer overflow")
)
func init() { proto.RegisterFile("exp.proto", fileDescriptorExp) }
var fileDescriptorExp = []byte{
// 266 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x91, 0x31, 0x4e, 0xf3, 0x30,
0x14, 0x80, 0x7f, 0x37, 0x71, 0xda, 0x7a, 0xfa, 0xe5, 0xc9, 0x20, 0x14, 0x57, 0x99, 0xba, 0xd0,
0x0e, 0xdc, 0x20, 0x88, 0x8d, 0xc9, 0x52, 0x36, 0xa6, 0x34, 0x26, 0x44, 0x4a, 0xb1, 0x65, 0xc5,
0xc8, 0x57, 0xe0, 0x06, 0x1c, 0x89, 0x91, 0x13, 0x44, 0x28, 0x6c, 0x39, 0x05, 0x7a, 0xcf, 0x95,
0x72, 0x02, 0x36, 0xbf, 0xef, 0xfb, 0xac, 0x67, 0xc9, 0x6c, 0xab, 0x83, 0x3d, 0x58, 0x67, 0x06,
0xc3, 0xe9, 0xd9, 0x34, 0xba, 0xbf, 0xbe, 0x6d, 0xbb, 0xe1, 0xc5, 0xd7, 0x87, 0x93, 0x39, 0x1f,
0x5b, 0xd3, 0x9a, 0x23, 0xda, 0xda, 0x3f, 0xe3, 0x84, 0x03, 0x9e, 0xe2, 0xad, 0xe2, 0x89, 0x25,
0x0f, 0xc1, 0xf2, 0x2b, 0x96, 0x54, 0x5d, 0x23, 0xc8, 0x8e, 0xec, 0x93, 0x72, 0x3d, 0x8f, 0x32,
0xf1, 0x5d, 0xa3, 0x80, 0xf1, 0x1b, 0x96, 0x56, 0x3a, 0x58, 0xb1, 0x42, 0xb7, 0x99, 0x47, 0x99,
0x7a, 0x1d, 0xac, 0x42, 0x0a, 0x56, 0x81, 0x4d, 0x16, 0xeb, 0xd0, 0x02, 0x2d, 0xde, 0x57, 0x8c,
0x3e, 0xea, 0x37, 0xdd, 0xff, 0xd1, 0x02, 0x5e, 0xb0, 0xac, 0xea, 0x61, 0x81, 0x48, 0x77, 0x64,
0x4f, 0x4b, 0x36, 0x8f, 0x32, 0xf3, 0x48, 0xd4, 0xc5, 0x40, 0xa3, 0x62, 0x43, 0x97, 0xc6, 0x5d,
0x9a, 0x68, 0xb8, 0x64, 0xf4, 0xde, 0xf4, 0xc6, 0x89, 0x0c, 0x93, 0xed, 0x3c, 0x4a, 0x7a, 0x02,
0xa0, 0x22, 0x87, 0xa0, 0x7a, 0xd5, 0x61, 0x10, 0x6b, 0x7c, 0x07, 0x06, 0x1e, 0x80, 0x8a, 0x1c,
0x02, 0x85, 0xc1, 0x66, 0x09, 0x5c, 0x0c, 0x90, 0x97, 0xff, 0x3f, 0xa7, 0x9c, 0x7c, 0x4d, 0x39,
0xf9, 0x9e, 0x72, 0xf2, 0xf1, 0x93, 0xff, 0xab, 0x33, 0xfc, 0x82, 0xbb, 0xdf, 0x00, 0x00, 0x00,
0xff, 0xff, 0x9c, 0x9c, 0xce, 0x04, 0xc5, 0x01, 0x00, 0x00,
}

View File

@@ -0,0 +1,20 @@
syntax = "proto3";
package model;
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
message Exp {
int64 Uid = 1 [(gogoproto.jsontag) = "uid"];
int64 Uexp = 2 [(gogoproto.jsontag) = "uexp"];
int64 Rexp = 3 [(gogoproto.jsontag) = "rexp"];
}
message Level {
int64 Uid = 1 [(gogoproto.jsontag) = "uid"];
int64 Uexp = 2 [(gogoproto.jsontag) = "uexp"];
int64 Rexp = 3 [(gogoproto.jsontag) = "rexp"];
int32 Ulevel = 4 [(gogoproto.jsontag) = "ulevel"];
int32 Rlevel = 5 [(gogoproto.jsontag) = "rlevel"];
int32 Color = 6 [(gogoproto.jsontag) = "color"];
int64 Unext = 7 [(gogoproto.jsontag) = "unext"];
int64 Rnext = 8 [(gogoproto.jsontag) = "rnext"];
}

View File

@@ -0,0 +1,11 @@
package model
import "encoding/json"
// Message canal standary message
type Message struct {
Action string `json:"action"`
Table string `json:"table"`
New json.RawMessage `json:"new"`
Old json.RawMessage `json:"old"`
}