Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; import { Document, Schema as MongooseSchema } from 'mongoose'; @Schema({ collection: 'salary_component_slabs', timestamps: true }) export class SalaryComponentSlab extends Document { @Prop({ type: MongooseSchema.Types.ObjectId, required: true }) tenantId!: MongooseSchema.Types.ObjectId; @Prop({ type: MongooseSchema.Types.ObjectId, required: true }) componentId!: MongooseSchema.Types.ObjectId; @Prop({ required: true }) fromAmount!: number; @Prop({ required: true }) toAmount!: number; @Prop({ required: true }) rate!: number; @Prop({ default: 'percentage', enum: ['percentage', 'fixed'] }) rateType!: string; @Prop({ default: 0 }) priority!: number; @Prop() effectiveFrom?: Date; @Prop() effectiveTo?: Date; } export const SalaryComponentSlabSchema = SchemaFactory.createForClass(SalaryComponentSlab); SalaryComponentSlabSchema.index({ tenantId: 1, componentId: 1, priority: 1 }); |