entity.code-snippets 452 B

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