260323:1050 fix CI : Verify Build frontend #02 correct _???
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { AuditLog } from '@/lib/services/audit-log.service';
|
||||
|
||||
|
||||
export interface AuditErrorRecord {
|
||||
code: string;
|
||||
@@ -7,8 +7,17 @@ export interface AuditErrorRecord {
|
||||
context?: Record<string, unknown>;
|
||||
}
|
||||
|
||||
export interface NumberingAuditLog {
|
||||
id: number;
|
||||
documentNumber: string;
|
||||
operation: string;
|
||||
status: string;
|
||||
createdAt: string;
|
||||
createdBy?: string;
|
||||
}
|
||||
|
||||
export interface NumberingMetrics {
|
||||
audit: AuditLog[];
|
||||
audit: NumberingAuditLog[];
|
||||
errors: AuditErrorRecord[];
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
/**
|
||||
* Master Data Entity Types
|
||||
*/
|
||||
|
||||
export interface CorrespondenceType {
|
||||
id: number;
|
||||
typeCode: string;
|
||||
typeName: string;
|
||||
isActive: boolean;
|
||||
sortOrder?: number;
|
||||
}
|
||||
|
||||
export interface Discipline {
|
||||
id: number;
|
||||
disciplineCode: string;
|
||||
codeNameEn: string;
|
||||
codeNameTh?: string;
|
||||
isActive: boolean;
|
||||
}
|
||||
|
||||
export interface RfaType {
|
||||
id: number;
|
||||
typeCode: string;
|
||||
typeNameTh: string;
|
||||
typeNameEn?: string;
|
||||
remark?: string;
|
||||
isActive: boolean;
|
||||
}
|
||||
|
||||
export interface Tag {
|
||||
id: number;
|
||||
tag_name: string;
|
||||
color_code?: string;
|
||||
description?: string;
|
||||
}
|
||||
|
||||
export interface DrawingCategory {
|
||||
id: number;
|
||||
subTypeCode: string;
|
||||
subTypeName: string;
|
||||
subTypeNumber?: string;
|
||||
}
|
||||
|
||||
export interface ShopMainCategory {
|
||||
id: number;
|
||||
mainCategoryCode: string;
|
||||
mainCategoryName: string;
|
||||
name?: string; // Fallback for legacy data
|
||||
isActive: boolean;
|
||||
}
|
||||
|
||||
export interface ShopSubCategory {
|
||||
id: number;
|
||||
subCategoryCode: string;
|
||||
subCategoryName: string;
|
||||
name?: string; // Fallback for legacy data
|
||||
isActive: boolean;
|
||||
}
|
||||
|
||||
export interface ContractDrawingCategory {
|
||||
id: number;
|
||||
catCode: string;
|
||||
catName: string;
|
||||
name?: string; // Fallback for legacy data
|
||||
}
|
||||
Reference in New Issue
Block a user