ปรับ UI โครงสร้าง
This commit is contained in:
parent
88041a1974
commit
8c1bfb7a75
6 changed files with 237 additions and 111 deletions
|
|
@ -8,36 +8,37 @@ interface DataOption {
|
|||
}
|
||||
|
||||
interface FormDataAgency {
|
||||
ocName: string
|
||||
shortName: string
|
||||
ocNo: string
|
||||
ocLevel: string
|
||||
telOut: string
|
||||
telIn: string
|
||||
tel: string
|
||||
orgName: string;
|
||||
orgShortName: string;
|
||||
orgCode: string;
|
||||
orgPhoneEx: string;
|
||||
orgPhoneIn: string;
|
||||
orgFax: string;
|
||||
orgRevisionId: string;
|
||||
orgLevel: string;
|
||||
}
|
||||
|
||||
interface FormDataPosition {
|
||||
prefixNo: string
|
||||
positionNo: string
|
||||
suffixNo: string
|
||||
confirm: boolean
|
||||
prefixNo: string;
|
||||
positionNo: string;
|
||||
suffixNo: string;
|
||||
confirm: boolean;
|
||||
}
|
||||
|
||||
interface FormDataNewStructure {
|
||||
orgRevisionName: string
|
||||
type: string
|
||||
|
||||
orgRevisionId: string;
|
||||
orgRevisionName: string;
|
||||
typeDraft: string;
|
||||
}
|
||||
|
||||
interface FormAgencyRef {
|
||||
ocName: object | null;
|
||||
shortName: object | null;
|
||||
ocNo: object | null;
|
||||
ocLevel: object | null;
|
||||
telOut: object | null;
|
||||
telIn: object | null;
|
||||
tel: object | null;
|
||||
orgName: object | null;
|
||||
orgShortName: object | null;
|
||||
orgCode: object | null;
|
||||
orgPhoneEx: object | null;
|
||||
orgPhoneIn: object | null;
|
||||
orgFax: object | null;
|
||||
orgLevel: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
|
|
@ -54,26 +55,27 @@ interface FormDateTimeRef {
|
|||
|
||||
interface FormNewStructureRef {
|
||||
orgRevisionName: object | null;
|
||||
orgRevisionId: object | null;
|
||||
type: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
interface HistoryType {
|
||||
orgRevisionId: string
|
||||
orgRevisionName: string
|
||||
orgRevisionIsCurrent: boolean
|
||||
orgRevisionIsDraft: boolean
|
||||
orgRevisionCreatedAt: any
|
||||
orgRevisionId: string;
|
||||
orgRevisionName: string;
|
||||
orgRevisionIsCurrent: boolean;
|
||||
orgRevisionIsDraft: boolean;
|
||||
orgRevisionCreatedAt: any;
|
||||
}
|
||||
export type {
|
||||
Pagination,
|
||||
DataOption,
|
||||
FormDataAgency,
|
||||
FormDataPosition,
|
||||
FormAgencyRef,
|
||||
FormPositionRef,
|
||||
FormDateTimeRef,
|
||||
FormDataNewStructure,
|
||||
FormNewStructureRef,
|
||||
HistoryType
|
||||
export type {
|
||||
Pagination,
|
||||
DataOption,
|
||||
FormDataAgency,
|
||||
FormDataPosition,
|
||||
FormAgencyRef,
|
||||
FormPositionRef,
|
||||
FormDateTimeRef,
|
||||
FormDataNewStructure,
|
||||
FormNewStructureRef,
|
||||
HistoryType,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue