2024-09-12 17:11:00 +07:00
|
|
|
interface FormQuery {
|
|
|
|
|
page: number;
|
|
|
|
|
pageSize: number;
|
|
|
|
|
year: number;
|
|
|
|
|
keyword: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface FormCommand {
|
|
|
|
|
commandYear: number;
|
|
|
|
|
commandNo: string;
|
|
|
|
|
commandTypeId?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface FormDataDetail {
|
2024-09-24 10:50:42 +07:00
|
|
|
id?: string;
|
|
|
|
|
status?: string;
|
2024-09-12 17:11:00 +07:00
|
|
|
commandNo: string;
|
|
|
|
|
commandYear: number | null;
|
|
|
|
|
detailHeader: string;
|
|
|
|
|
detailBody: string;
|
|
|
|
|
detailFooter: string;
|
|
|
|
|
issue: string | null;
|
2024-09-23 17:00:32 +07:00
|
|
|
commandAffectDate: Date | null;
|
|
|
|
|
commandExcecuteDate: Date | null;
|
2024-09-24 10:50:42 +07:00
|
|
|
commandSysId?: string;
|
|
|
|
|
commandTypeName?: string;
|
2024-09-12 17:11:00 +07:00
|
|
|
}
|
|
|
|
|
|
2024-09-24 10:50:42 +07:00
|
|
|
interface ListCommandSalaryType {
|
|
|
|
|
id: string;
|
|
|
|
|
createdAt: Date|null;
|
|
|
|
|
lastUpdatedAt: Date|null;
|
|
|
|
|
createdFullName: string;
|
|
|
|
|
lastUpdateFullName: string;
|
|
|
|
|
name: string;
|
|
|
|
|
commandSysId: string;
|
|
|
|
|
}
|
|
|
|
|
export type { FormQuery, FormCommand, FormDataDetail,ListCommandSalaryType };
|