2020-03-28 09:22:15 +08:00

20 lines
292 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package system
import "time"
// RoleModel 角色模型
type RoleModel struct {
// 编号
ID string
// 名称
Name string
// 创建时间
CreateTime time.Time
// 最后更新时间
UpdateTime time.Time
// 简介
Description string
// 状态0-正常,-1删除
Status int
}