蛋蛋星球 后台端
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

emoticon.go 278 B

1 주 전
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. }