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,
EmployeeOther,
EmployeeWork,
EmployeeCheckupCreate,
EmployeeOtherCreate,
EmployeeWorkCreate,
} from './types';
import { CustomerBranch } from '../customer/types';
import axios from 'axios';

View file

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