48 lines
1.7 KiB
JavaScript
48 lines
1.7 KiB
JavaScript
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
};
|
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
};
|
|
import { IsDateString, IsInt, IsNotEmpty, IsPositive, IsString, Max, Min } from 'class-validator';
|
|
export class CreateKeyResultDto {
|
|
objectiveId;
|
|
title;
|
|
startValue;
|
|
targetValue;
|
|
progress;
|
|
deadline;
|
|
}
|
|
__decorate([
|
|
IsInt(),
|
|
IsPositive(),
|
|
__metadata("design:type", Number)
|
|
], CreateKeyResultDto.prototype, "objectiveId", void 0);
|
|
__decorate([
|
|
IsString(),
|
|
IsNotEmpty(),
|
|
__metadata("design:type", String)
|
|
], CreateKeyResultDto.prototype, "title", void 0);
|
|
__decorate([
|
|
IsInt(),
|
|
__metadata("design:type", Number)
|
|
], CreateKeyResultDto.prototype, "startValue", void 0);
|
|
__decorate([
|
|
IsInt(),
|
|
IsPositive(),
|
|
__metadata("design:type", Number)
|
|
], CreateKeyResultDto.prototype, "targetValue", void 0);
|
|
__decorate([
|
|
IsInt(),
|
|
Min(0),
|
|
Max(100),
|
|
__metadata("design:type", Number)
|
|
], CreateKeyResultDto.prototype, "progress", void 0);
|
|
__decorate([
|
|
IsDateString(),
|
|
__metadata("design:type", String)
|
|
], CreateKeyResultDto.prototype, "deadline", void 0);
|