package model import "time" // CustomerService 客服表 type CustomerService struct { Id int64 Uid int64 // 用户id Weight int32 // 权重 State int32 // 状态 HasUserNums int // 拥有用户数量 Memo string // 备注 CreateTime time.Time // 创建时间 UpdateTime time.Time // 更新时间 }