|
@@ -5,7 +5,7 @@ import { BaseController } from '../../frame/BaseController';
|
|
|
import { omit, pick } from 'lodash';
|
|
|
import { ErrorCode, ServiceError } from '../../error/service.error';
|
|
|
import { Context } from '@midwayjs/koa';
|
|
|
-import { InvestmentService } from '../../service/users/investment.service';
|
|
|
+import { StateService } from '../../service/users/state.service';
|
|
|
import { QVO_state, FVO_state, CVO_state, UVAO_state } from '../../interface/users/state.interface';
|
|
|
import { ServiceUtilService } from '../../service/serviceUtil.service';
|
|
|
const namePrefix = '政府部门';
|
|
@@ -13,7 +13,7 @@ const namePrefix = '政府部门';
|
|
|
@Controller('/state', { tagName: namePrefix })
|
|
|
export class StateController implements BaseController {
|
|
|
@Inject()
|
|
|
- service: InvestmentService;
|
|
|
+ service: StateService;
|
|
|
@Inject()
|
|
|
ctx: Context;
|
|
|
|