蛋蛋星球-客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
278 B

  1. package model
  2. type Emoticon struct {
  3. Id int64
  4. Name string // 名称
  5. ImgUrl string // 图片地址
  6. Memo string // 备注
  7. Sort int // 排序
  8. State int // 状态0关闭,1开启
  9. CreateAt string // 创建时间
  10. UpdateAt string // 更新时间
  11. }