690326:2139 Fixing Refactor ADR-019 Naming convention uuid #07
CI / CD Pipeline / build (push) Successful in 10m6s
CI / CD Pipeline / deploy (push) Failing after 1m16s

This commit is contained in:
2026-03-26 21:39:03 +07:00
parent 25ea2fcd0f
commit 0a1ea1e4bb
8 changed files with 190 additions and 34 deletions
+14
View File
@@ -16,6 +16,13 @@ export interface Discipline {
codeNameEn: string;
codeNameTh?: string;
isActive: boolean;
contract?: {
id?: number;
publicId?: string;
contractCode: string;
contractName: string;
};
contractId?: number | string;
}
export interface RfaType {
@@ -25,6 +32,13 @@ export interface RfaType {
typeNameEn?: string;
remark?: string;
isActive: boolean;
contract?: {
id?: number;
publicId?: string;
contractCode: string;
contractName: string;
};
contractId?: number | string;
}
export interface Tag {