2024-09-13 15:55:45 +07:00
|
|
|
interface DataCommandSys {
|
|
|
|
|
id: string;
|
|
|
|
|
createdAt: string;
|
|
|
|
|
lastUpdatedAt: string;
|
|
|
|
|
createdFullName: string;
|
|
|
|
|
lastUpdateFullName: string;
|
|
|
|
|
sysName: string;
|
|
|
|
|
sysDescription: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface DataTemplateDetail {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
code: string;
|
|
|
|
|
detailHeader: string;
|
|
|
|
|
detailBody: string;
|
|
|
|
|
detailFooter: string;
|
2024-09-17 14:01:53 +07:00
|
|
|
fileCover?: string;
|
|
|
|
|
fileAttachment?: string;
|
2024-09-13 15:55:45 +07:00
|
|
|
isActive: boolean;
|
|
|
|
|
commandSysId: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { DataCommandSys, DataTemplateDetail };
|