do_users.go
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package domain
import "time"
const (
UserAdmin = iota + 1
UserNormal
)
// Users
type Users struct {
// 唯一标识
Id int64 `json:"id"`
// 名称
Name string `json:"name"`
// 地址
//Address string `json:"address"`
// 手机号
Phone string `json:"phone"`
// 密码
Passwd string `json:"-"`
// 用户角色
Roles []int64 `json:"roles"`
// 1启用 2禁用
Status int `json:"status"`
// 管理员类型 1:管理员 2:普通员工
AdminType int `json:"adminType"`
// 创建时间
CreateTime time.Time `json:"createTime"`
// 更新时间
UpdateTime time.Time `json:"updateTime"`
}
type UsersRepository interface {
Save(dm *Users) (*Users, error)
Remove(dm *Users) (*Users, error)
FindOne(queryOptions map[string]interface{}) (*Users, error)
Find(queryOptions map[string]interface{}) (int64, []*Users, error)
}
func (m *Users) Identify() interface{} {
if m.Id == 0 {
return nil
}
return m.Id
}
func (m *Users) Update(data map[string]interface{}) error {
if name, ok := data["name"]; ok {
m.Name = name.(string)
}
if phone, ok := data["phone"]; ok {
m.Phone = phone.(string)
}
if Passwd, ok := data["passwd"]; ok {
m.Passwd = Passwd.(string)
}
if roles, ok := data["roles"]; ok {
m.Roles = roles.([]int64)
}
if adminType, ok := data["adminType"]; ok {
m.AdminType = adminType.(int)
}
if status, ok := data["status"]; ok {
m.Status = status.(int)
}
m.UpdateTime = time.Now()
return nil
}