mirror of
https://github.com/apgzs/cool-admin-api.git
synced 2025-04-05 19:41:46 +08:00
13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
import { BaseService } from 'egg-cool-service';
|
|
import { Cache } from 'egg-cool-cache';
|
|
|
|
export default class User extends BaseService {
|
|
/**
|
|
* 缓存的使用演示
|
|
*/
|
|
@Cache({ ttl: 10000 })
|
|
async list () {
|
|
return await this.getRepo().User.find();
|
|
}
|
|
}
|