dto.code-snippets 360 B

12345678910111213141516171819
  1. {
  2. "dto": {
  3. "prefix": "dto",
  4. "body": [
  5. "import { Rule, RuleType } from '@midwayjs/decorator';",
  6. "/**",
  7. " * 描述",
  8. " */",
  9. "export class xxxDTO {",
  10. " // 描述",
  11. " @Rule(RuleType.string().required())",
  12. " xxx: string;",
  13. "}",
  14. ""
  15. ],
  16. "description": "cool-admin dto代码片段"
  17. }
  18. }