mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-02 22:10:25 +08:00
13 lines
370 B
Go
13 lines
370 B
Go
|
|
package dto
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type ResourceRole struct {
|
||
|
|
RoleId uint64 `json:"roleId"`
|
||
|
|
RoleName string `json:"roleName"`
|
||
|
|
RoleCode string `json:"roleCode"`
|
||
|
|
RoleStatus int `json:"roleStatus"` // 角色状态
|
||
|
|
AllocateTime *time.Time `json:"allocateTime"` // 分配时间
|
||
|
|
Assigner string `json:"assigner"` // 分配人
|
||
|
|
}
|