cool-admin-midway/.vscode/entity.code-snippets
2021-02-23 18:40:58 +08:00

23 lines
513 B
Plaintext

{
"entity": {
"prefix": "entity",
"body": [
"import { EntityModel } from '@midwayjs/orm';",
"import { BaseEntity } from 'midwayjs-cool-core';",
"import { Column } from 'typeorm';",
"",
"/**",
" * 描述",
" */",
"@EntityModel('xxx_xxx_xxx')",
"export class XxxEntity extends BaseEntity {",
"",
" @Column({comment: '描述'})",
" xxx: string;",
"",
"}",
],
"description": "cool-admin entity代码片段"
}
}