feat: change jobType in EmployeeWork to businessTypeId
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 4s

This commit is contained in:
Kanjana 2025-07-11 11:09:46 +07:00
parent a8bd19defc
commit fc22c38472
2 changed files with 2 additions and 2 deletions

View file

@ -965,7 +965,7 @@ model EmployeeWork {
ownerName String? ownerName String?
positionName String? positionName String?
jobType String? businessTypeId String?
workplace String? workplace String?
identityNo String? identityNo String?
workPermitNo String? workPermitNo String?

View file

@ -39,7 +39,7 @@ function globalAllow(user: RequestWithUser["user"]) {
type EmployeeWorkPayload = { type EmployeeWorkPayload = {
ownerName?: string | null; ownerName?: string | null;
positionName?: string | null; positionName?: string | null;
jobType?: string | null; businessTypeId?: string | null;
workplace?: string | null; workplace?: string | null;
identityNo?: string | null; identityNo?: string | null;
workPermitNo?: string | null; workPermitNo?: string | null;