feat: create TransferToLayingFilter type

This commit is contained in:
ValdiANS
2026-01-23 23:04:18 +07:00
parent 8cc7f2f526
commit 2f7ae0ae66
+8
View File
@@ -89,3 +89,11 @@ export type CreateTransferToLayingPayload = {
}; };
export type UpdateTransferToLayingPayload = CreateTransferToLayingPayload; export type UpdateTransferToLayingPayload = CreateTransferToLayingPayload;
export type TransferToLayingFilter = {
flockSource: number[];
flockDestination: number[];
status: number[];
startDate: string;
endDate: string;
};