hrms-mgt/src/modules/07_insignia/interface/request/Main.ts
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 6fb6024f53 Refactoring code module 07_insignia
2024-09-25 16:44:07 +07:00

40 lines
629 B
TypeScript

interface FormProprsalsRound {
id: string;
insignia: string;
total: number;
done: number;
remain: number;
}
interface FormProprsalsRound2 {
period_id: string;
period_name: string;
period_year: string;
period_amount: number;
period_start: any;
period_end: any;
period_isActive: boolean;
period_doc: any;
period_status: any;
}
interface ItemType {
name: string;
shortName: string;
}
interface ColId {
period_id: string;
}
interface CheckboxData {
id: number;
name: string;
val: boolean;
}
export type {
FormProprsalsRound,
FormProprsalsRound2,
ItemType,
ColId,
CheckboxData,
};