99AI/AIWebQuickDeploy/dist/modules/app/dto/queryApp.dto.js
2025-03-04 17:36:53 +08:00

53 lines
2.6 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.QuerAppDto = void 0;
const swagger_1 = require("@nestjs/swagger");
const class_validator_1 = require("class-validator");
class QuerAppDto {
}
__decorate([
(0, swagger_1.ApiProperty)({ example: 1, description: '查询页数', required: false }),
(0, class_validator_1.IsOptional)(),
__metadata("design:type", Number)
], QuerAppDto.prototype, "page", void 0);
__decorate([
(0, swagger_1.ApiProperty)({ example: 10, description: '每页数量', required: false }),
(0, class_validator_1.IsOptional)(),
__metadata("design:type", Number)
], QuerAppDto.prototype, "size", void 0);
__decorate([
(0, swagger_1.ApiProperty)({ example: 'name', description: 'app名称', required: false }),
(0, class_validator_1.IsOptional)(),
__metadata("design:type", String)
], QuerAppDto.prototype, "name", void 0);
__decorate([
(0, swagger_1.ApiProperty)({ example: 1, description: 'app状态 0禁用 1启用 3:审核加入广场中 4已拒绝加入广场', required: false }),
(0, class_validator_1.IsOptional)(),
__metadata("design:type", Number)
], QuerAppDto.prototype, "status", void 0);
__decorate([
(0, swagger_1.ApiProperty)({ example: 2, description: 'app分类Id', required: false }),
(0, class_validator_1.IsOptional)(),
__metadata("design:type", Number)
], QuerAppDto.prototype, "catId", void 0);
__decorate([
(0, swagger_1.ApiProperty)({ example: 'role', description: 'app角色', required: false }),
(0, class_validator_1.IsOptional)(),
__metadata("design:type", String)
], QuerAppDto.prototype, "role", void 0);
__decorate([
(0, swagger_1.ApiProperty)({ example: '关键词', description: '搜索关键词', required: false }),
(0, class_validator_1.IsOptional)(),
__metadata("design:type", String)
], QuerAppDto.prototype, "keyword", void 0);
exports.QuerAppDto = QuerAppDto;