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: { body: {
refIds: { refIds: {
refId?: string; refId?: string;
Sequence?: number; Sequence?: any | null;
CitizenId?: string; CitizenId?: any | null;
Prefix?: string; Prefix?: any | null;
FirstName?: string; FirstName?: any | null;
LastName?: string; LastName?: any | null;
Amount?: number; Amount?: any | null;
PositionSalaryAmount?: number; PositionSalaryAmount?: any | null;
MouthSalaryAmount?: number; MouthSalaryAmount?: any | null;
RemarkHorizontal?: string; RemarkHorizontal?: any | null;
RemarkVertical?: string; RemarkVertical?: any | null;
CommandYear?: number; CommandYear?: any | null;
}[]; }[];
}, },
) { ) {