|
- package model
-
- import "gim/pkg/pb"
-
- type Emoticon struct {
- Id int64
- MasterId int64 // 站长id
- Name string // 名称
- ImgUrl string // 图片地址
- Memo string // 备注
- Sort int // 排序
- State int // 状态0关闭,1开启
- CreateAt string // 创建时间
- UpdateAt string // 更新时间
- }
-
- func (e *Emoticon) ToProto() *pb.Emoticon {
- if e == nil {
- return nil
- }
-
- return &pb.Emoticon{
- Name: e.Name,
- ImgUrl: e.ImgUrl,
- Memo: e.Memo,
- Sort: int32(e.Sort),
- }
- }
|