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.
|
12345678910111213 |
- package model
-
- // CustomerService 客服表
- type CustomerService struct {
- Id int64
- Uid int64 // 用户id
- Weight int32 // 权重
- State int32 // 状态
- HasUserNums int // 拥有用户数量
- Memo string // 备注
- CreateTime string // 创建时间
- UpdateTime string // 更新时间
- }
|