39 lines
830 B
TypeScript
39 lines
830 B
TypeScript
interface FormQuery {
|
|
page: number;
|
|
pageSize: number;
|
|
year: number;
|
|
keyword: string;
|
|
}
|
|
|
|
interface FormCommand {
|
|
commandYear: number;
|
|
commandNo: string;
|
|
commandTypeId?: string;
|
|
}
|
|
|
|
interface FormDataDetail {
|
|
id?: string;
|
|
status?: string;
|
|
commandNo: string;
|
|
commandYear: number | null;
|
|
detailHeader: string;
|
|
detailBody: string;
|
|
detailFooter: string;
|
|
issue: string | null;
|
|
commandAffectDate: Date | null;
|
|
commandExcecuteDate: Date | null;
|
|
commandSysId?: string;
|
|
commandTypeName?: string;
|
|
isBangkok?: boolean;
|
|
}
|
|
|
|
interface ListCommandSalaryType {
|
|
id: string;
|
|
createdAt: Date | null;
|
|
lastUpdatedAt: Date | null;
|
|
createdFullName: string;
|
|
lastUpdateFullName: string;
|
|
name: string;
|
|
commandSysId: string;
|
|
}
|
|
export type { FormQuery, FormCommand, FormDataDetail, ListCommandSalaryType };
|