fix filter ทะเบียนปรวัติ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-01-31 11:30:24 +07:00
parent 317d68b0a5
commit 1dacd9c074
3 changed files with 143 additions and 12 deletions

View file

@ -13,6 +13,7 @@ interface FormFilter {
isAll?: boolean;
nodeId?: string | null;
node?: string | null | number;
retireType?: null | string;
}
interface FormAddPerson {
@ -54,6 +55,7 @@ interface QueryParams {
node?: number | string | null | undefined;
nodeId?: string;
isAll?: boolean;
retireType?: string | null;
}
interface FormChangeName {
@ -81,9 +83,9 @@ interface FormDataIDP {
createdAt?: Date | null;
}
interface RangeAge{
min:number
max:number
interface RangeAge {
min: number;
max: number;
}
export type {
FormFilter,
@ -93,5 +95,5 @@ export type {
QueryParams,
FormChangeName,
FormDataIDP,
RangeAge
RangeAge,
};