解决冲突

This commit is contained in:
wangshiming
2022-02-24 15:36:43 +08:00
parent d6a5eab320
commit 2870adbe6e
6 changed files with 241 additions and 1 deletions

View File

@ -0,0 +1,12 @@
import { Injectable, Injector } from '@angular/core';
import { BaseService } from '@shared';
@Injectable({
providedIn: 'root',
})
export class RebateManagementService extends BaseService {
constructor(public injector: Injector) {
super(injector);
}
}