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.
|
- 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 // 更新时间
- }
|