access.go 1.8 KB
package domain

// 权限
type Access struct {
	// dcc
	Id int64 `json:"id"`
	// 父级Id
	ParentId int64 `json:"parentId"`
	// 权限名称
	AccessName string `json:"accessName"`
	// 权限名称
	AccessCode string `json:"accessCode"`
	// 权限类型 menu button data
	AccessType string `json:"accessType"`
	// 排序
	Sort int `json:"sort"`
	// 请求对象 接口地址/对象
	Object string `json:"object"`
	// 操作方法 httpMethod/read/write
	Action string `json:"action"`
	// 所属功能模块
	Module string `json:"module"`
	// 图标
	Icon string `json:"icon"`
	// 状态 1-启用 0-禁用
	Status int `json:"status"`
}

type AccessRepository interface {
	Save(access *Access) (*Access, error)
	Remove(access *Access) (*Access, error)
	FindOne(queryOptions map[string]interface{}) (*Access, error)
	Find(queryOptions map[string]interface{}) (int64, []*Access, error)
}

func (access *Access) Identify() interface{} {
	if access.Id == 0 {
		return nil
	}
	return access.Id
}

func (access *Access) Update(data map[string]interface{}) error {
	if ParentId, ok := data["ParentId"]; ok {
		access.ParentId = ParentId.(int64)
	}
	if AccessName, ok := data["AccessName"]; ok {
		access.AccessName = AccessName.(string)
	}
	if AccessCode, ok := data["AccessCode"]; ok {
		access.AccessCode = AccessCode.(string)
	}
	if AccessType, ok := data["AccessType"]; ok {
		access.AccessType = AccessType.(string)
	}
	if Sort, ok := data["Sort"]; ok {
		access.Sort = Sort.(int)
	}
	if Object, ok := data["Object"]; ok {
		access.Object = Object.(string)
	}
	if Action, ok := data["Action"]; ok {
		access.Action = Action.(string)
	}
	if Module, ok := data["Module"]; ok {
		access.Module = Module.(string)
	}
	if Icon, ok := data["Icon"]; ok {
		access.Icon = Icon.(string)
	}
	if Status, ok := data["Status"]; ok {
		access.Status = Status.(int)
	}
	return nil
}