รายการคำสั่ง ==> API

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-12 17:11:00 +07:00
parent 71be6d095f
commit 15b33b147a
14 changed files with 568 additions and 145 deletions

View file

@ -1 +1,24 @@
export type {};
interface FormQuery {
page: number;
pageSize: number;
year: number;
keyword: string;
}
interface FormCommand {
commandYear: number;
commandNo: string;
commandTypeId?: string;
}
interface FormDataDetail {
commandNo: string;
commandYear: number | null;
// commandName: string;
detailHeader: string;
detailBody: string;
detailFooter: string;
issue: string | null;
}
export type { FormQuery, FormCommand, FormDataDetail };