cool-admin-midway/.vscode/entity.code-snippets

22 lines
503 B
Plaintext
Raw Normal View History

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