99AI/dist/modules/auth/dto/sendPhoneCode.dto.js
2024-01-17 09:22:28 +08:00

35 lines
2.0 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use strict";
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);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.SendPhoneCodeDto = void 0;
const class_validator_1 = require("class-validator");
const swagger_1 = require("@nestjs/swagger");
class SendPhoneCodeDto {
}
__decorate([
(0, swagger_1.ApiProperty)({ example: '199999999', description: '手机号' }),
(0, class_validator_1.IsNotEmpty)({ message: '手机号不能为空' }),
(0, class_validator_1.MinLength)(11, { message: '手机号长度为11位' }),
(0, class_validator_1.MaxLength)(11, { message: '手机号长度为11位' }),
__metadata("design:type", String)
], SendPhoneCodeDto.prototype, "phone", void 0);
__decorate([
(0, swagger_1.ApiProperty)({ example: '2b4i1b4', description: '图形验证码KEY' }),
(0, class_validator_1.IsNotEmpty)({ message: '验证码KEY不能为空' }),
__metadata("design:type", String)
], SendPhoneCodeDto.prototype, "captchaId", void 0);
__decorate([
(0, swagger_1.ApiProperty)({ example: '1g4d', description: '图形验证码' }),
(0, class_validator_1.IsNotEmpty)({ message: '验证码不能为空' }),
__metadata("design:type", String)
], SendPhoneCodeDto.prototype, "captchaCode", void 0);
exports.SendPhoneCodeDto = SendPhoneCodeDto;