From eaca1058cc4c3dc28bc8028df44c45799c4aa507 Mon Sep 17 00:00:00 2001 From: Bright Date: Mon, 28 Oct 2024 15:30:47 +0700 Subject: [PATCH] no message --- src/controllers/CommandController.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/controllers/CommandController.ts b/src/controllers/CommandController.ts index 3da10d53..9e654ffe 100644 --- a/src/controllers/CommandController.ts +++ b/src/controllers/CommandController.ts @@ -2832,17 +2832,17 @@ export class CommandController extends Controller { body: { refIds: { refId?: string; - Sequence?: number; - CitizenId?: string; - Prefix?: string; - FirstName?: string; - LastName?: string; - Amount?: number; - PositionSalaryAmount?: number; - MouthSalaryAmount?: number; - RemarkHorizontal?: string; - RemarkVertical?: string; - CommandYear?: number; + Sequence?: any | null; + CitizenId?: any | null; + Prefix?: any | null; + FirstName?: any | null; + LastName?: any | null; + Amount?: any | null; + PositionSalaryAmount?: any | null; + MouthSalaryAmount?: any | null; + RemarkHorizontal?: any | null; + RemarkVertical?: any | null; + CommandYear?: any | null; }[]; }, ) {