新增示例

This commit is contained in:
啊平 2019-09-28 17:41:43 +08:00
parent 45464f7dad
commit dd6b8e0675
5 changed files with 29 additions and 3 deletions

1
app/controller/info.md Normal file
View File

@ -0,0 +1 @@
控制器

11
app/controller/user.ts Normal file
View File

@ -0,0 +1,11 @@
import { BaseController } from '../lib/base/controller';
import routerDecorator from '../lib/router';
import { Context } from 'egg';
@routerDecorator.prefix('/user', [ 'add', 'delete', 'update', 'info', 'list', 'page' ])
export default class User extends BaseController {
constructor (ctx: Context) {
super(ctx);
this.setEntity(this.ctx.repo.sys.User);
}
}

1
app/entities/info.md Normal file
View File

@ -0,0 +1 @@
数据模型

13
app/entities/user.ts Normal file
View File

@ -0,0 +1,13 @@
import { BaseEntity } from '../lib/base/entity';
import { Entity, Column } from 'typeorm';
@Entity({ name: 'user' })
export default class User extends BaseEntity {
// 用户名
@Column()
name: string;
// 昵称
@Column()
nickName: string;
}

View File

@ -13,9 +13,9 @@ export default () => {
type: 'mysql',
host: '127.0.0.1',
port: 3306,
username: '',
password: '',
database: '',
username: 'root',
password: '123123',
database: 'cool-admin',
synchronize: true,
logging: true,
},