@opentiny/tiny-toolkit-pro
Version:
TinyPro Vue:开箱即用、前后端分离的 Vue 后台管理模板
37 lines (34 loc) • 1.08 kB
text/typescript
import { IsNotEmpty } from 'class-validator';
import { i18nValidationMessage } from 'nestjs-i18n';
import { I18nTranslations } from '../../.generate/i18n.generated';
export class CreateMenuDto {
order: number;
menuType: string;
name: string;
path: string;
component: string;
icon: string;
locale: string;
parentId: number | null;
}