This commit is contained in:
root
2026-07-04 07:42:19 +00:00
parent 68bb3c9167
commit 73d84169d6
6 changed files with 361 additions and 29 deletions
+4
View File
@@ -39,6 +39,7 @@ export class DescriptiveGradingRecord {
"evaluation": string;
"username": string;
"createdAt": string;
"ocrImageUrl": string;
/** Creates a new DescriptiveGradingRecord instance. */
constructor($$source: Partial<DescriptiveGradingRecord> = {}) {
@@ -66,6 +67,9 @@ export class DescriptiveGradingRecord {
if (!("createdAt" in $$source)) {
this["createdAt"] = "";
}
if (!("ocrImageUrl" in $$source)) {
this["ocrImageUrl"] = "";
}
Object.assign(this, $$source);
}