entity.code-snippets 504 B

12345678910111213141516171819202122
  1. {
  2. "entity": {
  3. "prefix": "entity",
  4. "body": [
  5. "import { EntityModel } from '@midwayjs/orm';",
  6. "import { BaseEntity } from 'midwayjs-cool-core';",
  7. "import { Column } from 'typeorm';",
  8. "",
  9. "/**",
  10. " * 描述",
  11. " */",
  12. "@EntityModel('xxx_xxx_xxx')",
  13. "export class XxxEntity extends BaseEntity {",
  14. " @Column({ comment: '描述' })",
  15. " xxx: string;",
  16. "}",
  17. ""
  18. ],
  19. "description": "cool-admin entity代码片段"
  20. }
  21. }