You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
457 B
20 lines
457 B
{
|
|
"entity": {
|
|
"prefix": "entity",
|
|
"body": [
|
|
"import { BaseEntity } from '../../base/entity/base';",
|
|
"import { Column, Entity } from 'typeorm';",
|
|
"",
|
|
"/**",
|
|
" * 描述",
|
|
" */",
|
|
"@Entity('xxx_xxx_xxx')",
|
|
"export class XxxEntity extends BaseEntity {",
|
|
" @Column({ comment: '描述' })",
|
|
" xxx: string;",
|
|
"}",
|
|
""
|
|
],
|
|
"description": "cool-admin entity代码片段"
|
|
}
|
|
}
|
|
|