เลือกผู้เซ็นเอกสาร ประเมินผล step2

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-12-15 17:50:47 +07:00
parent 665e530f47
commit 4ff70cfc40
3 changed files with 242 additions and 55 deletions

View file

@ -0,0 +1,17 @@
interface FormCommand {
elementaryFullName: string;
elementaryPosition: string;
abovelevelFullname: string;
abovelevelPosition: string;
}
interface FormCommandRef {
elementaryFullName: object | null;
elementaryPosition: object | null;
abovelevelFullname: object | null;
abovelevelPosition: object | null;
[key: string]: any;
}
export type { FormCommand, FormCommandRef };