แก้ ตำแหน่ง โครงสร้าง

This commit is contained in:
kittapath 2024-09-19 15:57:01 +07:00
parent 475d42cbe4
commit d175165cea
8 changed files with 51 additions and 17 deletions

View file

@ -183,6 +183,8 @@ export class CommandController extends Controller {
detailHeader: command.detailHeader,
detailBody: command.detailBody,
detailFooter: command.detailFooter,
commandAffectDate: command.commandAffectDate,
commandExcecuteDate: command.commandExcecuteDate,
commandTypeName: command.commandType?.name || null,
commandSysId: command.commandType?.commandSysId || null,
};
@ -207,6 +209,8 @@ export class CommandController extends Controller {
detailHeader: string | null;
detailBody: string | null;
detailFooter: string | null;
commandAffectDate: Date | null;
commandExcecuteDate: Date | null;
},
@Request() request: RequestWithUser,
) {