1
2
3
4
5
6
7
8
9
10
11
12
13
| import { CoolController, BaseController } from '@cool-midway/core';
| import { DemoGoodsEntity } from '../../entity/goods';
| import { DemoTenantService } from '../../service/tenant';
|
| /**
| * 多租户
| */
| @CoolController({
| api: [],
| entity: DemoGoodsEntity,
| service: DemoTenantService,
| })
| export class OpenDemoTenantController extends BaseController {}
|
|