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

16 lines
367 B

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