summaryrefslogtreecommitdiff
path: root/src/models/contractor/contractor.schema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/contractor/contractor.schema.ts')
-rw-r--r--src/models/contractor/contractor.schema.ts18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/models/contractor/contractor.schema.ts b/src/models/contractor/contractor.schema.ts
new file mode 100644
index 0000000..e3f7de6
--- /dev/null
+++ b/src/models/contractor/contractor.schema.ts
@@ -0,0 +1,18 @@
+import { Document, Schema, Types } from 'mongoose';
+
+export interface ContractorSchema extends Document {
+ name: string;
+ fullName: string;
+ vatId: string;
+ type: string;
+ debt: number;
+}
+
+export const contractorSchema = new Schema({
+ name: String,
+ fullName: String,
+ vatId: String,
+ type: String,
+ debt: Number
+}, { timestamps: true });
+