no message

This commit is contained in:
Bright 2024-10-28 15:30:47 +07:00
parent 58ea6f67c1
commit eaca1058cc

View file

@ -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;
}[];
},
) {