product_group.go 1.5 KB
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
}