do_role.go 862 字节
package domain

import "time"

// Role
type Role struct {
	// 唯一标识
	Id int64 `json:"id"`
	// 角色名称
	RoleName string `json:"roleName"`
	// 父级Id
	ParentId int64 `json:"parentId"`
	// 创建时间
	CreateTime time.Time `json:"createTime"`
	// 更新时间
	UpdateTime time.Time `json:"updateTime"`
}

type RoleRepository interface {
	Save(dm *Role) (*Role, error)
	Remove(dm *Role) (*Role, error)
	FindOne(queryOptions map[string]interface{}) (*Role, error)
	Find(queryOptions map[string]interface{}) (int64, []*Role, error)
}

func (m *Role) Identify() interface{} {
	if m.Id == 0 {
		return nil
	}
	return m.Id
}

func (m *Role) Update(data map[string]interface{}) error {
	if roleName, ok := data["roleName"]; ok {
		m.RoleName = roleName.(string)
	}
	if parentId, ok := data["parentId"]; ok {
		m.ParentId = parentId.(int64)
	}
	return nil
}