ออกคำสั่งลงโทษทางวินัย
This commit is contained in:
parent
2fb3a61f23
commit
d2c6837a86
6 changed files with 699 additions and 170 deletions
|
|
@ -1,25 +1,35 @@
|
|||
interface DataList {
|
||||
subject: string
|
||||
ordernumber: string
|
||||
dateOrder: string | null;
|
||||
orderby: string
|
||||
signer: string
|
||||
statusorder: string
|
||||
|
||||
fiscalYear: string;
|
||||
orderBy: string;
|
||||
orderById: string;
|
||||
orderByOrganization: string;
|
||||
orderDate: string | null;
|
||||
orderId: string;
|
||||
orderName: string;
|
||||
orderNo: string;
|
||||
orderStatusName: string;
|
||||
orderStatusValue: string;
|
||||
orderTypeName: string;
|
||||
orderTypeValue: string;
|
||||
signatoryBy: string;
|
||||
signatoryPosition: string;
|
||||
}
|
||||
|
||||
interface DataListRes {
|
||||
subject: string
|
||||
ordernumber: string
|
||||
dateOrder: Date
|
||||
orderby: string
|
||||
signer: string
|
||||
statusorder: string
|
||||
fiscalYear: string;
|
||||
orderBy: string;
|
||||
orderById: string;
|
||||
orderByOrganization: string;
|
||||
orderDate: Date;
|
||||
orderId: string;
|
||||
orderName: string;
|
||||
orderNo: string;
|
||||
orderStatusName: string;
|
||||
orderStatusValue: string;
|
||||
orderTypeName: string;
|
||||
orderTypeValue: string;
|
||||
signatoryBy: string;
|
||||
signatoryPosition: string;
|
||||
}
|
||||
|
||||
|
||||
|
||||
export type {
|
||||
DataList,
|
||||
DataListRes
|
||||
}
|
||||
export type { DataList, DataListRes };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue