product_group.go
1.5 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
package domain
import "time"
// 生产班组
type ProductGroup struct {
// 生产小组ID
ProductGroupId int `json:"productGroupId,omitempty"`
// 企业id
CompanyId int `json:"companyId,omitempty"`
// 组织ID
OrgId int `json:"orgId,omitempty"`
// 班组名称
GroupName string `json:"groupName,omitempty"`
// 班组长
GroupLeader *User `json:"groupLeader,omitempty"`
// 帮组成员列表
GroupMembers []*User `json:"groupMembers,omitempty"`
// 上班班次 1:全天 2:白班 4:中班 8:夜班
WorkOn int `json:"workOn,omitempty"`
// 工作位置
WorkStation *WorkStation `json:"workStation,omitempty"`
// 创建时间
CreatedAt time.Time `json:"createdAt,omitempty"`
// 更新时间
UpdatedAt time.Time `json:"updatedAt,omitempty"`
// 删除时间
DeletedAt time.Time `json:"deletedAt,omitempty"`
// 扩展数据
Ext *Ext `json:"ext,omitempty"`
}
type ProductGroupRepository interface {
Save(productGroup *ProductGroup) (*ProductGroup, error)
Remove(productGroup *ProductGroup) (*ProductGroup, error)
FindOne(queryOptions map[string]interface{}) (*ProductGroup, error)
Find(queryOptions map[string]interface{}) (int64, []*ProductGroup, error)
}
func (productGroup *ProductGroup) Identify() interface{} {
if productGroup.ProductGroupId == 0 {
return nil
}
return productGroup.ProductGroupId
}
func (productGroup *ProductGroup) Update(data map[string]interface{}) error {
if groupName, ok := data["groupName"]; ok {
productGroup.GroupName = groupName.(string)
}
productGroup.UpdatedAt = time.Now()
return nil
}