蛋蛋星球 后台端
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.
 
 
 
 

14 lines
331 B

  1. package model
  2. // CustomerService 客服表
  3. type CustomerService struct {
  4. Id int64
  5. Uid int64 // 用户id
  6. Weight int32 // 权重
  7. State int32 // 状态
  8. HasUserNums int // 拥有用户数量
  9. Memo string // 备注
  10. CreateTime string // 创建时间
  11. UpdateTime string // 更新时间
  12. }