added api mask me mssql
This commit is contained in:
parent
05c0e9dc43
commit
ad179c5f43
@ -8,20 +8,20 @@ export class ManageFeeController {
|
||||
|
||||
constructor(private readonly manageFeeService: ManageFeeService) { }
|
||||
|
||||
@ApiTags('Manage Fee - Mssql')
|
||||
@Get('/GetBasicFeeRates')
|
||||
// @ApiTags('Manage Fee - Mssql')
|
||||
// @Get('/GetBasicFeeRates')
|
||||
GetBasicFeeRates(@Query() body: GetFeeGeneralDTO) {
|
||||
return this.manageFeeService.GETBASICFEERATES(body);
|
||||
}
|
||||
|
||||
@ApiTags('Manage Fee - Mssql')
|
||||
@Post('/CreateBasicFee')
|
||||
// @ApiTags('Manage Fee - Mssql')
|
||||
// @Post('/CreateBasicFee')
|
||||
CreateBasicFee(@Body() body: CreateBasicFeeDTO) {
|
||||
return this.manageFeeService.CREATEBASICFEE(body);
|
||||
}
|
||||
|
||||
@ApiTags('Manage Fee - Mssql')
|
||||
@Patch('/UpdateBasicFee')
|
||||
// @ApiTags('Manage Fee - Mssql')
|
||||
// @Patch('/UpdateBasicFee')
|
||||
UpdateBasicFee(@Body() body: UpdateBasicFeeDTO) {
|
||||
return this.manageFeeService.UPDATEBASICFEE(body);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user