oa_based/src/modules/system/role/role.dto.ts

49 lines
1.2 KiB
TypeScript

import { ApiProperty, IntersectionType, PartialType } from '@nestjs/swagger'
import {
IsArray,
IsIn,
IsInt,
IsOptional,
IsString,
Matches,
MinLength,
} from 'class-validator'
import { PagerDto } from '~/common/dto/pager.dto'
export class RoleDto {
@ApiProperty({ description: '角色名称' })
@IsString()
@MinLength(2, { message: '角色名称长度不能小于2' })
name: string
@ApiProperty({ description: '角色值' })
@IsString()
@Matches(/^[a-z0-9A-Z]+$/, { message: '角色值只能包含字母和数字' })
@MinLength(2, { message: '角色值长度不能小于2' })
value: string
@ApiProperty({ description: '角色备注' })
@IsString()
@IsOptional()
remark?: string
@ApiProperty({ description: '状态' })
@IsIn([0, 1])
status: number
@ApiProperty({ description: '关联菜单、权限编号' })
@IsOptional()
@IsArray()
menuIds?: number[]
}
export class RoleUpdateDto extends PartialType(RoleDto) {}
export class RoleQueryDto extends IntersectionType(PagerDto<RoleDto>, PartialType(RoleDto)) {
@ApiProperty({ description: '状态', example: 0, required: false })
@IsInt()
@IsOptional()
status?: number
}