no message
This commit is contained in:
parent
cf44eb68c9
commit
3128103f3a
2 changed files with 3 additions and 3 deletions
|
|
@ -27,7 +27,7 @@ import { randomUUID } from "crypto";
|
|||
@Route("api/v1/salary")
|
||||
@Tags("Salary")
|
||||
@Security("bearerAuth")
|
||||
export class Salary extends Controller {
|
||||
export class SalaryController extends Controller {
|
||||
private salaryRepository = AppDataSource.getRepository(Salarys);
|
||||
private salaryRankRepository = AppDataSource.getRepository(SalaryRanks);
|
||||
private poTypeRepository = AppDataSource.getRepository(PosType);
|
||||
|
|
|
|||
|
|
@ -27,9 +27,9 @@ import { SalaryRankEmployees } from "../entities/SalaryRankEmployees";
|
|||
import { randomUUID } from "crypto";
|
||||
|
||||
@Route("api/v1/salary/employee")
|
||||
@Tags("Salary")
|
||||
@Tags("SalaryEmployee")
|
||||
@Security("bearerAuth")
|
||||
export class Salary extends Controller {
|
||||
export class SalaryEmployeeController extends Controller {
|
||||
private salaryEmployeeRepository = AppDataSource.getRepository(SalaryEmployees);
|
||||
private salaryRankEmployeeRepository = AppDataSource.getRepository(SalaryRankEmployees);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue