refactor: add type statusSave
This commit is contained in:
parent
57d0f4399a
commit
796af2b704
2 changed files with 5 additions and 0 deletions
|
|
@ -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';
|
||||||
|
|
|
||||||
|
|
@ -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 = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue