JM-WechatMini/model/system/response/sys_authority.go
2023-11-02 04:34:46 +08:00

13 lines
308 B
Go

package response
import "miniapp/model/system"
type SysAuthorityResponse struct {
Authority system.SysAuthority `json:"authority"`
}
type SysAuthorityCopyResponse struct {
Authority system.SysAuthority `json:"authority"`
OldAuthorityId uint `json:"oldAuthorityId"` // 旧角色ID
}