客户明细

This commit is contained in:
潘晓云
2022-02-24 17:18:22 +08:00
parent 522043df21
commit 984a9a85f0
13 changed files with 355 additions and 17 deletions

View File

@ -0,0 +1,13 @@
import { Injectable, Injector } from '@angular/core';
import { BaseService } from '@shared';
@Injectable({
providedIn: 'root'
})
export class BussinessStatisticsService extends BaseService {
$api_get_partner_statistics_page = `/api/fcc/ficoBrmH/list/page`;
constructor(public injector: Injector) {
super(injector);
}
}