mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-01-04 05:36:35 +08:00
feat: i18n
This commit is contained in:
12
server/internal/sys/application/dto/dto.go
Normal file
12
server/internal/sys/application/dto/dto.go
Normal file
@@ -0,0 +1,12 @@
|
||||
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"` // 分配人
|
||||
}
|
||||
Reference in New Issue
Block a user