refactor: add type statusSave

This commit is contained in:
Net 2024-08-01 15:56:17 +07:00
parent 57d0f4399a
commit 796af2b704
2 changed files with 5 additions and 0 deletions

View file

@ -8,6 +8,9 @@ import {
EmployeeCreate, EmployeeCreate,
EmployeeOther, EmployeeOther,
EmployeeWork, EmployeeWork,
EmployeeCheckupCreate,
EmployeeOtherCreate,
EmployeeWorkCreate,
} from './types'; } from './types';
import { CustomerBranch } from '../customer/types'; import { CustomerBranch } from '../customer/types';
import axios from 'axios'; import axios from 'axios';

View file

@ -158,6 +158,7 @@ export type EmployeeCheckupCreate = {
provinceId?: string; provinceId?: string;
checkupResult?: string; checkupResult?: string;
checkupType?: string; checkupType?: string;
statusSave?: boolean;
}; };
export type EmployeeWork = { export type EmployeeWork = {
@ -188,6 +189,7 @@ export type EmployeeWorkCreate = {
positionName?: string; positionName?: string;
ownerName?: string; ownerName?: string;
remark?: string; remark?: string;
statusSave?: boolean;
}; };
export type EmployeeOther = { export type EmployeeOther = {