蛋蛋星球 后台端
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

emoticon.go 278 B

hace 1 semana
123456789101112
  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. }