mirror of
https://github.com/apgzs/cool-admin-api.git
synced 2025-04-06 03:58:06 +08:00
新增示例
This commit is contained in:
parent
45464f7dad
commit
dd6b8e0675
1
app/controller/info.md
Normal file
1
app/controller/info.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
控制器
|
11
app/controller/user.ts
Normal file
11
app/controller/user.ts
Normal 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
1
app/entities/info.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
数据模型
|
13
app/entities/user.ts
Normal file
13
app/entities/user.ts
Normal 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;
|
||||||
|
|
||||||
|
}
|
@ -13,9 +13,9 @@ export default () => {
|
|||||||
type: 'mysql',
|
type: 'mysql',
|
||||||
host: '127.0.0.1',
|
host: '127.0.0.1',
|
||||||
port: 3306,
|
port: 3306,
|
||||||
username: '',
|
username: 'root',
|
||||||
password: '',
|
password: '123123',
|
||||||
database: '',
|
database: 'cool-admin',
|
||||||
synchronize: true,
|
synchronize: true,
|
||||||
logging: true,
|
logging: true,
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user