no message

This commit is contained in:
Kittapath 2024-03-13 09:52:05 +07:00
parent cf44eb68c9
commit 3128103f3a
2 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@ import { randomUUID } from "crypto";
@Route("api/v1/salary") @Route("api/v1/salary")
@Tags("Salary") @Tags("Salary")
@Security("bearerAuth") @Security("bearerAuth")
export class Salary extends Controller { export class SalaryController extends Controller {
private salaryRepository = AppDataSource.getRepository(Salarys); private salaryRepository = AppDataSource.getRepository(Salarys);
private salaryRankRepository = AppDataSource.getRepository(SalaryRanks); private salaryRankRepository = AppDataSource.getRepository(SalaryRanks);
private poTypeRepository = AppDataSource.getRepository(PosType); private poTypeRepository = AppDataSource.getRepository(PosType);

View file

@ -27,9 +27,9 @@ import { SalaryRankEmployees } from "../entities/SalaryRankEmployees";
import { randomUUID } from "crypto"; import { randomUUID } from "crypto";
@Route("api/v1/salary/employee") @Route("api/v1/salary/employee")
@Tags("Salary") @Tags("SalaryEmployee")
@Security("bearerAuth") @Security("bearerAuth")
export class Salary extends Controller { export class SalaryEmployeeController extends Controller {
private salaryEmployeeRepository = AppDataSource.getRepository(SalaryEmployees); private salaryEmployeeRepository = AppDataSource.getRepository(SalaryEmployees);
private salaryRankEmployeeRepository = AppDataSource.getRepository(SalaryRankEmployees); private salaryRankEmployeeRepository = AppDataSource.getRepository(SalaryRankEmployees);