-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Allen Zhang (ๅผ ๆถ)
committed
Apr 9, 2024
1 parent
8f6faca
commit 665cc17
Showing
3 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
packages/canyon-backend/src/coverage/schemas/coverage-log.schema.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; | ||
// ๅฎไน 'ant' ็ฑปๅ | ||
// ๅฎไน antType ็ฑปๅ | ||
// type CoverageType = { | ||
// [key: string]: object; | ||
// }; | ||
|
||
@Schema() | ||
export class CoverageLog { | ||
@Prop() | ||
coverageID: string; | ||
|
||
@Prop({ type: Object }) | ||
coverage: any; | ||
} | ||
|
||
export const CoverageLogSchema = SchemaFactory.createForClass(CoverageLog); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters