m
This commit is contained in:
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
export declare class CheckUpdateVo {
|
||||
hasUpdate: boolean;
|
||||
latestVersion?: string;
|
||||
title?: string;
|
||||
downloadUrl?: string;
|
||||
}
|
||||
Vendored
+41
@@ -0,0 +1,41 @@
|
||||
"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.CheckUpdateVo = void 0;
|
||||
const openapi = require("@nestjs/swagger");
|
||||
const swagger_1 = require("@nestjs/swagger");
|
||||
class CheckUpdateVo {
|
||||
hasUpdate;
|
||||
latestVersion;
|
||||
title;
|
||||
downloadUrl;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { hasUpdate: { required: true, type: () => Boolean }, latestVersion: { required: false, type: () => String }, title: { required: false, type: () => String }, downloadUrl: { required: false, type: () => String } };
|
||||
}
|
||||
}
|
||||
exports.CheckUpdateVo = CheckUpdateVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '是否有新版本' }),
|
||||
__metadata("design:type", Boolean)
|
||||
], CheckUpdateVo.prototype, "hasUpdate", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiPropertyOptional)({ description: '最新版本号' }),
|
||||
__metadata("design:type", String)
|
||||
], CheckUpdateVo.prototype, "latestVersion", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiPropertyOptional)({ description: '版本标题' }),
|
||||
__metadata("design:type", String)
|
||||
], CheckUpdateVo.prototype, "title", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiPropertyOptional)({ description: '下载链接' }),
|
||||
__metadata("design:type", String)
|
||||
], CheckUpdateVo.prototype, "downloadUrl", void 0);
|
||||
//# sourceMappingURL=app_version.vo.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"app_version.vo.js","sourceRoot":"","sources":["../../../../src/app/api/vo/app_version.vo.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,6CAAmE;AAEnE,MAAa,aAAa;IAExB,SAAS,CAAU;IAGnB,aAAa,CAAU;IAGvB,KAAK,CAAU;IAGf,WAAW,CAAU;;;;CACtB;AAZD,sCAYC;AAVC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC;;gDACpB;AAGnB;IADC,IAAA,6BAAmB,EAAC,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC;;oDACvB;AAGvB;IADC,IAAA,6BAAmB,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,CAAC;;4CAC9B;AAGf;IADC,IAAA,6BAAmB,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,CAAC;;kDACxB"}
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
export declare class LoginVo {
|
||||
token: string;
|
||||
}
|
||||
Vendored
+26
@@ -0,0 +1,26 @@
|
||||
"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.LoginVo = void 0;
|
||||
const openapi = require("@nestjs/swagger");
|
||||
const swagger_1 = require("@nestjs/swagger");
|
||||
class LoginVo {
|
||||
token;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { token: { required: true, type: () => String } };
|
||||
}
|
||||
}
|
||||
exports.LoginVo = LoginVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '访问令牌' }),
|
||||
__metadata("design:type", String)
|
||||
], LoginVo.prototype, "token", void 0);
|
||||
//# sourceMappingURL=auth.vo.js.map
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"auth.vo.js","sourceRoot":"","sources":["../../../../src/app/api/vo/auth.vo.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,6CAA8C;AAE9C,MAAa,OAAO;IAElB,KAAK,CAAS;;;;CACf;AAHD,0BAGC;AADC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,CAAC;;sCACvB"}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
export declare class MeetingRecordVo {
|
||||
id: number;
|
||||
device: string;
|
||||
date: string;
|
||||
}
|
||||
+36
@@ -0,0 +1,36 @@
|
||||
"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.MeetingRecordVo = void 0;
|
||||
const openapi = require("@nestjs/swagger");
|
||||
const swagger_1 = require("@nestjs/swagger");
|
||||
class MeetingRecordVo {
|
||||
id;
|
||||
device;
|
||||
date;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { id: { required: true, type: () => Number }, device: { required: true, type: () => String }, date: { required: true, type: () => String } };
|
||||
}
|
||||
}
|
||||
exports.MeetingRecordVo = MeetingRecordVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '记录 ID' }),
|
||||
__metadata("design:type", Number)
|
||||
], MeetingRecordVo.prototype, "id", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '设备号' }),
|
||||
__metadata("design:type", String)
|
||||
], MeetingRecordVo.prototype, "device", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '参加会议日期' }),
|
||||
__metadata("design:type", String)
|
||||
], MeetingRecordVo.prototype, "date", void 0);
|
||||
//# sourceMappingURL=daily_meeting_stats.vo.js.map
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"daily_meeting_stats.vo.js","sourceRoot":"","sources":["../../../../src/app/api/vo/daily_meeting_stats.vo.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,6CAA8C;AAE9C,MAAa,eAAe;IAE1B,EAAE,CAAS;IAGX,MAAM,CAAS;IAGf,IAAI,CAAS;;;;CACd;AATD,0CASC;AAPC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC;;2CAC3B;AAGX;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC;;+CACrB;AAGf;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC;;6CAC1B"}
|
||||
Vendored
+30
@@ -0,0 +1,30 @@
|
||||
import { UserSignInModel } from 'src/model/user_sign_in.model';
|
||||
export declare enum TaskStatus {
|
||||
InProgress = 0,
|
||||
Pending = 1,
|
||||
Completed = 2
|
||||
}
|
||||
export declare enum SignInType {
|
||||
Normal = 0,
|
||||
MakeUp = 1
|
||||
}
|
||||
export declare class UserSignInVo extends UserSignInModel {
|
||||
signToDay: boolean;
|
||||
}
|
||||
export declare class SignInProgressDayVo {
|
||||
date: string;
|
||||
isDay: boolean;
|
||||
signedIn: boolean;
|
||||
isMakeUp: SignInType;
|
||||
isFutureDay: boolean;
|
||||
consecutiveDay: number;
|
||||
}
|
||||
export declare class SignInTaskVo {
|
||||
id: number;
|
||||
title: string;
|
||||
subtitle: string;
|
||||
requiredDays: number;
|
||||
icon: string;
|
||||
status: TaskStatus;
|
||||
rewardId?: number;
|
||||
}
|
||||
Vendored
+124
@@ -0,0 +1,124 @@
|
||||
"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.SignInTaskVo = exports.SignInProgressDayVo = exports.UserSignInVo = exports.SignInType = exports.TaskStatus = void 0;
|
||||
const openapi = require("@nestjs/swagger");
|
||||
const swagger_1 = require("@nestjs/swagger");
|
||||
const user_sign_in_model_1 = require("../../../model/user_sign_in.model");
|
||||
var TaskStatus;
|
||||
(function (TaskStatus) {
|
||||
TaskStatus[TaskStatus["InProgress"] = 0] = "InProgress";
|
||||
TaskStatus[TaskStatus["Pending"] = 1] = "Pending";
|
||||
TaskStatus[TaskStatus["Completed"] = 2] = "Completed";
|
||||
})(TaskStatus || (exports.TaskStatus = TaskStatus = {}));
|
||||
var SignInType;
|
||||
(function (SignInType) {
|
||||
SignInType[SignInType["Normal"] = 0] = "Normal";
|
||||
SignInType[SignInType["MakeUp"] = 1] = "MakeUp";
|
||||
})(SignInType || (exports.SignInType = SignInType = {}));
|
||||
class UserSignInVo extends user_sign_in_model_1.UserSignInModel {
|
||||
signToDay;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { signToDay: { required: true, type: () => Boolean } };
|
||||
}
|
||||
}
|
||||
exports.UserSignInVo = UserSignInVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '今日是否签到' }),
|
||||
__metadata("design:type", Boolean)
|
||||
], UserSignInVo.prototype, "signToDay", void 0);
|
||||
class SignInProgressDayVo {
|
||||
date;
|
||||
isDay;
|
||||
signedIn;
|
||||
isMakeUp;
|
||||
isFutureDay;
|
||||
consecutiveDay;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { date: { required: true, type: () => String }, isDay: { required: true, type: () => Boolean }, signedIn: { required: true, type: () => Boolean }, isMakeUp: { required: true, enum: require("./signin.vo").SignInType }, isFutureDay: { required: true, type: () => Boolean }, consecutiveDay: { required: true, type: () => Number } };
|
||||
}
|
||||
}
|
||||
exports.SignInProgressDayVo = SignInProgressDayVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '日期 (YYYY-MM-DD)' }),
|
||||
__metadata("design:type", String)
|
||||
], SignInProgressDayVo.prototype, "date", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '是否今天' }),
|
||||
__metadata("design:type", Boolean)
|
||||
], SignInProgressDayVo.prototype, "isDay", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '是否已签到' }),
|
||||
__metadata("design:type", Boolean)
|
||||
], SignInProgressDayVo.prototype, "signedIn", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({
|
||||
description: '签到类型: 0-正常签到, 1-补签',
|
||||
enum: SignInType,
|
||||
}),
|
||||
__metadata("design:type", Number)
|
||||
], SignInProgressDayVo.prototype, "isMakeUp", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '是否未来签到日期' }),
|
||||
__metadata("design:type", Boolean)
|
||||
], SignInProgressDayVo.prototype, "isFutureDay", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '从首次签到到本日期的天数' }),
|
||||
__metadata("design:type", Number)
|
||||
], SignInProgressDayVo.prototype, "consecutiveDay", void 0);
|
||||
class SignInTaskVo {
|
||||
id;
|
||||
title;
|
||||
subtitle;
|
||||
requiredDays;
|
||||
icon;
|
||||
status;
|
||||
rewardId;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { id: { required: true, type: () => Number }, title: { required: true, type: () => String }, subtitle: { required: true, type: () => String }, requiredDays: { required: true, type: () => Number }, icon: { required: true, type: () => String }, status: { required: true, enum: require("./signin.vo").TaskStatus }, rewardId: { required: false, type: () => Number } };
|
||||
}
|
||||
}
|
||||
exports.SignInTaskVo = SignInTaskVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '任务 ID' }),
|
||||
__metadata("design:type", Number)
|
||||
], SignInTaskVo.prototype, "id", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '任务标题' }),
|
||||
__metadata("design:type", String)
|
||||
], SignInTaskVo.prototype, "title", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '任务子标题' }),
|
||||
__metadata("design:type", String)
|
||||
], SignInTaskVo.prototype, "subtitle", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '需要签到天数' }),
|
||||
__metadata("design:type", Number)
|
||||
], SignInTaskVo.prototype, "requiredDays", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '图标' }),
|
||||
__metadata("design:type", String)
|
||||
], SignInTaskVo.prototype, "icon", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({
|
||||
description: '任务状态: 0-进行中, 1-待领取, 2-已完成',
|
||||
enum: TaskStatus,
|
||||
}),
|
||||
__metadata("design:type", Number)
|
||||
], SignInTaskVo.prototype, "status", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({
|
||||
description: '奖励记录 ID(仅待领取/已完成时存在)',
|
||||
nullable: true,
|
||||
}),
|
||||
__metadata("design:type", Number)
|
||||
], SignInTaskVo.prototype, "rewardId", void 0);
|
||||
//# sourceMappingURL=signin.vo.js.map
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"signin.vo.js","sourceRoot":"","sources":["../../../../src/app/api/vo/signin.vo.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,6CAA8C;AAC9C,0EAA+D;AAK/D,IAAY,UAOX;AAPD,WAAY,UAAU;IAEpB,uDAAc,CAAA;IAEd,iDAAW,CAAA;IAEX,qDAAa,CAAA;AACf,CAAC,EAPW,UAAU,0BAAV,UAAU,QAOrB;AAKD,IAAY,UAKX;AALD,WAAY,UAAU;IAEpB,+CAAU,CAAA;IAEV,+CAAU,CAAA;AACZ,CAAC,EALW,UAAU,0BAAV,UAAU,QAKrB;AAED,MAAa,YAAa,SAAQ,oCAAe;IAE/C,SAAS,CAAU;;;;CACpB;AAHD,oCAGC;AADC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC;;+CACpB;AAGrB,MAAa,mBAAmB;IAE9B,IAAI,CAAS;IAGb,KAAK,CAAU;IAGf,QAAQ,CAAU;IAMlB,QAAQ,CAAa;IAGrB,WAAW,CAAU;IAGrB,cAAc,CAAS;;;;CACxB;AArBD,kDAqBC;AAnBC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,iBAAiB,EAAE,CAAC;;iDACnC;AAGb;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,CAAC;;kDACtB;AAGf;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC;;qDACpB;AAMlB;IAJC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,oBAAoB;QACjC,IAAI,EAAE,UAAU;KACjB,CAAC;;qDACmB;AAGrB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,UAAU,EAAE,CAAC;;wDACpB;AAGrB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,cAAc,EAAE,CAAC;;2DACtB;AAGzB,MAAa,YAAY;IAEvB,EAAE,CAAS;IAGX,KAAK,CAAS;IAGd,QAAQ,CAAS;IAGjB,YAAY,CAAS;IAGrB,IAAI,CAAS;IAMb,MAAM,CAAa;IAMnB,QAAQ,CAAU;;;;CACnB;AA3BD,oCA2BC;AAzBC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC;;wCAC3B;AAGX;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,CAAC;;2CACvB;AAGd;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC;;8CACrB;AAGjB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC;;kDAClB;AAGrB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,IAAI,EAAE,CAAC;;0CACtB;AAMb;IAJC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,2BAA2B;QACxC,IAAI,EAAE,UAAU;KACjB,CAAC;;4CACiB;AAMnB;IAJC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,sBAAsB;QACnC,QAAQ,EAAE,IAAI;KACf,CAAC;;8CACgB"}
|
||||
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
import { UserVo } from './user.vo';
|
||||
import { UserSignInModel } from 'src/model/user_sign_in.model';
|
||||
export declare class TeamStatsVo {
|
||||
directChildrenCount: number;
|
||||
grandchildrenCount: number;
|
||||
greatGrandchildrenCount: number;
|
||||
}
|
||||
export declare class TeamTodayNewVo {
|
||||
directChildrenCount: number;
|
||||
grandchildrenCount: number;
|
||||
greatGrandchildrenCount: number;
|
||||
}
|
||||
export declare class TeamMemberVo extends UserVo {
|
||||
level: number;
|
||||
createTime: string;
|
||||
signIn?: UserSignInModel;
|
||||
}
|
||||
Vendored
+80
@@ -0,0 +1,80 @@
|
||||
"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.TeamMemberVo = exports.TeamTodayNewVo = exports.TeamStatsVo = void 0;
|
||||
const openapi = require("@nestjs/swagger");
|
||||
const swagger_1 = require("@nestjs/swagger");
|
||||
const user_vo_1 = require("./user.vo");
|
||||
const user_sign_in_model_1 = require("../../../model/user_sign_in.model");
|
||||
class TeamStatsVo {
|
||||
directChildrenCount;
|
||||
grandchildrenCount;
|
||||
greatGrandchildrenCount;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { directChildrenCount: { required: true, type: () => Number }, grandchildrenCount: { required: true, type: () => Number }, greatGrandchildrenCount: { required: true, type: () => Number } };
|
||||
}
|
||||
}
|
||||
exports.TeamStatsVo = TeamStatsVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '下级人数' }),
|
||||
__metadata("design:type", Number)
|
||||
], TeamStatsVo.prototype, "directChildrenCount", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '下下级人数' }),
|
||||
__metadata("design:type", Number)
|
||||
], TeamStatsVo.prototype, "grandchildrenCount", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '下下下级人数' }),
|
||||
__metadata("design:type", Number)
|
||||
], TeamStatsVo.prototype, "greatGrandchildrenCount", void 0);
|
||||
class TeamTodayNewVo {
|
||||
directChildrenCount;
|
||||
grandchildrenCount;
|
||||
greatGrandchildrenCount;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { directChildrenCount: { required: true, type: () => Number }, grandchildrenCount: { required: true, type: () => Number }, greatGrandchildrenCount: { required: true, type: () => Number } };
|
||||
}
|
||||
}
|
||||
exports.TeamTodayNewVo = TeamTodayNewVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '今日新增下级人数' }),
|
||||
__metadata("design:type", Number)
|
||||
], TeamTodayNewVo.prototype, "directChildrenCount", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '今日新增下下级人数' }),
|
||||
__metadata("design:type", Number)
|
||||
], TeamTodayNewVo.prototype, "grandchildrenCount", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '今日新增下下下级人数' }),
|
||||
__metadata("design:type", Number)
|
||||
], TeamTodayNewVo.prototype, "greatGrandchildrenCount", void 0);
|
||||
class TeamMemberVo extends user_vo_1.UserVo {
|
||||
level;
|
||||
createTime;
|
||||
signIn;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { level: { required: true, type: () => Number }, createTime: { required: true, type: () => String }, signIn: { required: false, type: () => require("../../../model/user_sign_in.model").UserSignInModel } };
|
||||
}
|
||||
}
|
||||
exports.TeamMemberVo = TeamMemberVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '层级' }),
|
||||
__metadata("design:type", Number)
|
||||
], TeamMemberVo.prototype, "level", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '注册时间' }),
|
||||
__metadata("design:type", String)
|
||||
], TeamMemberVo.prototype, "createTime", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '签到信息', nullable: true }),
|
||||
__metadata("design:type", user_sign_in_model_1.UserSignInModel)
|
||||
], TeamMemberVo.prototype, "signIn", void 0);
|
||||
//# sourceMappingURL=team.vo.js.map
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"team.vo.js","sourceRoot":"","sources":["../../../../src/app/api/vo/team.vo.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,6CAA8C;AAC9C,uCAAmC;AACnC,0EAA+D;AAE/D,MAAa,WAAW;IAEtB,mBAAmB,CAAS;IAG5B,kBAAkB,CAAS;IAG3B,uBAAuB,CAAS;;;;CACjC;AATD,kCASC;AAPC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,CAAC;;wDACT;AAG5B;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC;;uDACX;AAG3B;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC;;4DACP;AAGlC,MAAa,cAAc;IAEzB,mBAAmB,CAAS;IAG5B,kBAAkB,CAAS;IAG3B,uBAAuB,CAAS;;;;CACjC;AATD,wCASC;AAPC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,UAAU,EAAE,CAAC;;2DACb;AAG5B;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,WAAW,EAAE,CAAC;;0DACf;AAG3B;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,YAAY,EAAE,CAAC;;+DACX;AAGlC,MAAa,YAAa,SAAQ,gBAAM;IAEtC,KAAK,CAAS;IAGd,UAAU,CAAS;IAGnB,MAAM,CAAmB;;;;CAC1B;AATD,oCASC;AAPC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,IAAI,EAAE,CAAC;;2CACrB;AAGd;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,CAAC;;gDAClB;AAGnB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC5C,oCAAe;4CAAC"}
|
||||
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
import { UserModel } from 'src/model/user.model';
|
||||
declare const UserVo_base: import("@nestjs/common").Type<Omit<UserModel, "password" | "tradePassword">>;
|
||||
export declare class UserVo extends UserVo_base {
|
||||
hasTradePassword?: boolean;
|
||||
}
|
||||
export declare class ImVo {
|
||||
prefix: string;
|
||||
uid: string;
|
||||
tolen: string;
|
||||
sign: string;
|
||||
appId: number;
|
||||
isAuth: boolean;
|
||||
isBuy: boolean;
|
||||
username: string;
|
||||
avatar: string;
|
||||
enabledCreateGroup: boolean;
|
||||
}
|
||||
export {};
|
||||
Vendored
+87
@@ -0,0 +1,87 @@
|
||||
"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.ImVo = exports.UserVo = void 0;
|
||||
const openapi = require("@nestjs/swagger");
|
||||
const swagger_1 = require("@nestjs/swagger");
|
||||
const swagger_2 = require("@nestjs/swagger");
|
||||
const user_model_1 = require("../../../model/user.model");
|
||||
class UserVo extends (0, swagger_2.OmitType)(user_model_1.UserModel, [
|
||||
'password',
|
||||
'tradePassword',
|
||||
]) {
|
||||
hasTradePassword;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { hasTradePassword: { required: false, type: () => Boolean } };
|
||||
}
|
||||
}
|
||||
exports.UserVo = UserVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '是否已设置交易密码', nullable: true }),
|
||||
__metadata("design:type", Boolean)
|
||||
], UserVo.prototype, "hasTradePassword", void 0);
|
||||
class ImVo {
|
||||
prefix;
|
||||
uid;
|
||||
tolen;
|
||||
sign;
|
||||
appId;
|
||||
isAuth;
|
||||
isBuy;
|
||||
username;
|
||||
avatar;
|
||||
enabledCreateGroup;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { prefix: { required: true, type: () => String }, uid: { required: true, type: () => String }, tolen: { required: true, type: () => String }, sign: { required: true, type: () => String }, appId: { required: true, type: () => Number }, isAuth: { required: true, type: () => Boolean }, isBuy: { required: true, type: () => Boolean }, username: { required: true, type: () => String }, avatar: { required: true, type: () => String }, enabledCreateGroup: { required: true, type: () => Boolean } };
|
||||
}
|
||||
}
|
||||
exports.ImVo = ImVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: 'prefix' }),
|
||||
__metadata("design:type", String)
|
||||
], ImVo.prototype, "prefix", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: 'IM用户ID' }),
|
||||
__metadata("design:type", String)
|
||||
], ImVo.prototype, "uid", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: 'token' }),
|
||||
__metadata("design:type", String)
|
||||
], ImVo.prototype, "tolen", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: 'IM签名' }),
|
||||
__metadata("design:type", String)
|
||||
], ImVo.prototype, "sign", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: 'appId' }),
|
||||
__metadata("design:type", Number)
|
||||
], ImVo.prototype, "appId", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '是否实名认证 0:未实名 1:已实名' }),
|
||||
__metadata("design:type", Boolean)
|
||||
], ImVo.prototype, "isAuth", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '是否有购买NFR产品' }),
|
||||
__metadata("design:type", Boolean)
|
||||
], ImVo.prototype, "isBuy", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: 'APP username' }),
|
||||
__metadata("design:type", String)
|
||||
], ImVo.prototype, "username", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: 'APP 头像' }),
|
||||
__metadata("design:type", String)
|
||||
], ImVo.prototype, "avatar", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '是否有创建群的权限' }),
|
||||
__metadata("design:type", Boolean)
|
||||
], ImVo.prototype, "enabledCreateGroup", void 0);
|
||||
//# sourceMappingURL=user.vo.js.map
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"user.vo.js","sourceRoot":"","sources":["../../../../src/app/api/vo/user.vo.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,6CAA8C;AAC9C,6CAA2C;AAC3C,0DAAiD;AAEjD,MAAa,MAAO,SAAQ,IAAA,kBAAQ,EAAC,sBAAS,EAAE;IAC9C,UAAU;IACV,eAAe;CACP,CAAC;IAET,gBAAgB,CAAW;;;;CAC5B;AAND,wBAMC;AADC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAC/B;AAG7B,MAAa,IAAI;IAER,MAAM,CAAS;IAEf,GAAG,CAAS;IAEZ,KAAK,CAAS;IAEd,IAAI,CAAS;IAEb,KAAK,CAAS;IAErB,MAAM,CAAU;IAGhB,KAAK,CAAU;IAGR,QAAQ,CAAS;IAGjB,MAAM,CAAS;IAGtB,kBAAkB,CAAU;;;;CAC7B;AAzBD,oBAyBC;AAvBQ;IADN,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC;;oCACjB;AAEf;IADN,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC;;iCACpB;AAEZ;IADN,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC;;mCACjB;AAEd;IADN,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,CAAC;;kCACjB;AAEb;IADN,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC;;mCACjB;AAErB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,oBAAoB,EAAE,CAAC;;oCACnC;AAGhB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,YAAY,EAAE,CAAC;;mCAC5B;AAGR;IADN,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,cAAc,EAAE,CAAC;;sCACrB;AAGjB;IADN,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC;;oCACjB;AAGtB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,WAAW,EAAE,CAAC;;gDACd"}
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
import { RedPacketModel } from 'src/model/red_packet.model';
|
||||
import { RedPacketRecordModel } from 'src/model/red_packet_record.model';
|
||||
import { UserModel } from 'src/model/user.model';
|
||||
export declare enum UserClaimedStats {
|
||||
Own = "own",
|
||||
Unclaimed = "unclaimed",
|
||||
Success = "success",
|
||||
Finished = "finished",
|
||||
Expired = "expired"
|
||||
}
|
||||
export declare class UserLikeVo {
|
||||
uid: string;
|
||||
user: UserModel;
|
||||
}
|
||||
export declare class UserClaimedVo {
|
||||
status: UserClaimedStats;
|
||||
record?: RedPacketRecordModel;
|
||||
redPacket: RedPacketModel;
|
||||
constructor(status: UserClaimedStats, redPacket: RedPacketModel, record?: RedPacketRecordModel);
|
||||
}
|
||||
Vendored
+68
@@ -0,0 +1,68 @@
|
||||
"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.UserClaimedVo = exports.UserLikeVo = exports.UserClaimedStats = void 0;
|
||||
const openapi = require("@nestjs/swagger");
|
||||
const swagger_1 = require("@nestjs/swagger");
|
||||
const red_packet_model_1 = require("../../../model/red_packet.model");
|
||||
const red_packet_record_model_1 = require("../../../model/red_packet_record.model");
|
||||
const user_model_1 = require("../../../model/user.model");
|
||||
var UserClaimedStats;
|
||||
(function (UserClaimedStats) {
|
||||
UserClaimedStats["Own"] = "own";
|
||||
UserClaimedStats["Unclaimed"] = "unclaimed";
|
||||
UserClaimedStats["Success"] = "success";
|
||||
UserClaimedStats["Finished"] = "finished";
|
||||
UserClaimedStats["Expired"] = "expired";
|
||||
})(UserClaimedStats || (exports.UserClaimedStats = UserClaimedStats = {}));
|
||||
class UserLikeVo {
|
||||
uid;
|
||||
user;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { uid: { required: true, type: () => String }, user: { required: true, type: () => require("../../../model/user.model").UserModel } };
|
||||
}
|
||||
}
|
||||
exports.UserLikeVo = UserLikeVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: 'IM用户ID' }),
|
||||
__metadata("design:type", String)
|
||||
], UserLikeVo.prototype, "uid", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '用户信息' }),
|
||||
__metadata("design:type", user_model_1.UserModel)
|
||||
], UserLikeVo.prototype, "user", void 0);
|
||||
class UserClaimedVo {
|
||||
status;
|
||||
record;
|
||||
redPacket;
|
||||
constructor(status, redPacket, record) {
|
||||
this.status = status;
|
||||
this.redPacket = redPacket;
|
||||
this.record = record;
|
||||
}
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { status: { required: true, enum: require("./user_im.vo").UserClaimedStats }, record: { required: false, type: () => require("../../../model/red_packet_record.model").RedPacketRecordModel }, redPacket: { required: true, type: () => require("../../../model/red_packet.model").RedPacketModel } };
|
||||
}
|
||||
}
|
||||
exports.UserClaimedVo = UserClaimedVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '1刚刚领取,2领取过了', enum: UserClaimedStats }),
|
||||
__metadata("design:type", String)
|
||||
], UserClaimedVo.prototype, "status", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '领取记录', nullable: true }),
|
||||
__metadata("design:type", red_packet_record_model_1.RedPacketRecordModel)
|
||||
], UserClaimedVo.prototype, "record", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '红包详情', type: red_packet_model_1.RedPacketModel }),
|
||||
__metadata("design:type", red_packet_model_1.RedPacketModel)
|
||||
], UserClaimedVo.prototype, "redPacket", void 0);
|
||||
//# sourceMappingURL=user_im.vo.js.map
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"user_im.vo.js","sourceRoot":"","sources":["../../../../src/app/api/vo/user_im.vo.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,6CAA8C;AAC9C,sEAA4D;AAC5D,oFAAyE;AACzE,0DAAiD;AAEjD,IAAY,gBAMX;AAND,WAAY,gBAAgB;IAC1B,+BAAW,CAAA;IACX,2CAAuB,CAAA;IACvB,uCAAmB,CAAA;IACnB,yCAAqB,CAAA;IACrB,uCAAmB,CAAA;AACrB,CAAC,EANW,gBAAgB,gCAAhB,gBAAgB,QAM3B;AAED,MAAa,UAAU;IAErB,GAAG,CAAS;IAEZ,IAAI,CAAY;;;;CACjB;AALD,gCAKC;AAHC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC;;uCAC3B;AAEZ;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,CAAC;8BAC/B,sBAAS;wCAAC;AAGlB,MAAa,aAAa;IAExB,MAAM,CAAmB;IAEzB,MAAM,CAAwB;IAE9B,SAAS,CAAiB;IAC1B,YACE,MAAwB,EACxB,SAAyB,EACzB,MAA6B;QAE7B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;;;;CACF;AAhBD,sCAgBC;AAdC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,aAAa,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;;6CAC3C;AAEzB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC5C,8CAAoB;6CAAC;AAE9B;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,IAAI,EAAE,iCAAc,EAAE,CAAC;8BAChD,iCAAc;gDAAC"}
|
||||
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
import { VerifyAuditStatus } from 'src/model/user_verify.model';
|
||||
export declare class UserVerifyInfoVo {
|
||||
hasUpload: boolean;
|
||||
isApproved: boolean;
|
||||
status?: VerifyAuditStatus;
|
||||
realName?: string;
|
||||
idCardNo?: string;
|
||||
idCardFront?: string;
|
||||
idCardBack?: string;
|
||||
handHoldIdCard?: string;
|
||||
rejectReason?: string;
|
||||
}
|
||||
Vendored
+71
@@ -0,0 +1,71 @@
|
||||
"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.UserVerifyInfoVo = void 0;
|
||||
const openapi = require("@nestjs/swagger");
|
||||
const swagger_1 = require("@nestjs/swagger");
|
||||
const user_verify_model_1 = require("../../../model/user_verify.model");
|
||||
class UserVerifyInfoVo {
|
||||
hasUpload;
|
||||
isApproved;
|
||||
status;
|
||||
realName;
|
||||
idCardNo;
|
||||
idCardFront;
|
||||
idCardBack;
|
||||
handHoldIdCard;
|
||||
rejectReason;
|
||||
static _OPENAPI_METADATA_FACTORY() {
|
||||
return { hasUpload: { required: true, type: () => Boolean }, isApproved: { required: true, type: () => Boolean }, status: { required: false, enum: require("../../../model/user_verify.model").VerifyAuditStatus }, realName: { required: false, type: () => String }, idCardNo: { required: false, type: () => String }, idCardFront: { required: false, type: () => String }, idCardBack: { required: false, type: () => String }, handHoldIdCard: { required: false, type: () => String }, rejectReason: { required: false, type: () => String } };
|
||||
}
|
||||
}
|
||||
exports.UserVerifyInfoVo = UserVerifyInfoVo;
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '是否已上传实名信息' }),
|
||||
__metadata("design:type", Boolean)
|
||||
], UserVerifyInfoVo.prototype, "hasUpload", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '是否审核通过' }),
|
||||
__metadata("design:type", Boolean)
|
||||
], UserVerifyInfoVo.prototype, "isApproved", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({
|
||||
description: '审核状态:0=待审核,1=审核通过,2=审核驳回',
|
||||
enum: user_verify_model_1.VerifyAuditStatus,
|
||||
nullable: true,
|
||||
}),
|
||||
__metadata("design:type", Number)
|
||||
], UserVerifyInfoVo.prototype, "status", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '姓名', nullable: true }),
|
||||
__metadata("design:type", String)
|
||||
], UserVerifyInfoVo.prototype, "realName", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '身份证号', nullable: true }),
|
||||
__metadata("design:type", String)
|
||||
], UserVerifyInfoVo.prototype, "idCardNo", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '身份证正面图片 URL', nullable: true }),
|
||||
__metadata("design:type", String)
|
||||
], UserVerifyInfoVo.prototype, "idCardFront", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '身份证反面图片 URL', nullable: true }),
|
||||
__metadata("design:type", String)
|
||||
], UserVerifyInfoVo.prototype, "idCardBack", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '手持身份证图片 URL', nullable: true }),
|
||||
__metadata("design:type", String)
|
||||
], UserVerifyInfoVo.prototype, "handHoldIdCard", void 0);
|
||||
__decorate([
|
||||
(0, swagger_1.ApiProperty)({ description: '驳回原因', nullable: true }),
|
||||
__metadata("design:type", String)
|
||||
], UserVerifyInfoVo.prototype, "rejectReason", void 0);
|
||||
//# sourceMappingURL=user_verify.vo.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"user_verify.vo.js","sourceRoot":"","sources":["../../../../src/app/api/vo/user_verify.vo.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,6CAA8C;AAC9C,wEAAgE;AAEhE,MAAa,gBAAgB;IAE3B,SAAS,CAAU;IAGnB,UAAU,CAAU;IAOpB,MAAM,CAAqB;IAG3B,QAAQ,CAAU;IAGlB,QAAQ,CAAU;IAGlB,WAAW,CAAU;IAGrB,UAAU,CAAU;IAGpB,cAAc,CAAU;IAGxB,YAAY,CAAU;;;;CACvB;AA/BD,4CA+BC;AA7BC;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,WAAW,EAAE,CAAC;;mDACvB;AAGnB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC;;oDACnB;AAOpB;IALC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,0BAA0B;QACvC,IAAI,EAAE,qCAAiB;QACvB,QAAQ,EAAE,IAAI;KACf,CAAC;;gDACyB;AAG3B;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDACjC;AAGlB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDACnC;AAGlB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDACvC;AAGrB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACxC;AAGpB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDACpC;AAGxB;IADC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sDAC/B"}
|
||||
Reference in New Issue
Block a user