72 lines
2.5 KiB
TypeScript
72 lines
2.5 KiB
TypeScript
import { PaginatedDto } from 'src/app/common/api';
|
|
import { Repository } from 'typeorm';
|
|
import { OrderBy } from '../../app/common/enum/order_by.enum';
|
|
import { Expression } from '../../app/common/enum/expression.enum';
|
|
import { WalletModel } from '../../model/wallet.model';
|
|
declare class GeneratedWalletFindOrderDto {
|
|
id?: OrderBy;
|
|
createTime?: OrderBy;
|
|
updateTime?: OrderBy;
|
|
deleteTime?: OrderBy;
|
|
balance?: OrderBy;
|
|
frozenBalance?: OrderBy;
|
|
publicityFund?: OrderBy;
|
|
financialProductEarnings?: OrderBy;
|
|
financialProductEarningsTime?: OrderBy;
|
|
totalRecharge?: OrderBy;
|
|
totalWithdraw?: OrderBy;
|
|
}
|
|
declare class GeneratedWalletFindRelationDto {
|
|
user?: boolean;
|
|
}
|
|
declare class GeneratedWalletFindExpressionDto {
|
|
id?: Expression;
|
|
createTime?: Expression;
|
|
updateTime?: Expression;
|
|
deleteTime?: Expression;
|
|
balance?: Expression;
|
|
frozenBalance?: Expression;
|
|
publicityFund?: Expression;
|
|
financialProductEarnings?: Expression;
|
|
financialProductEarningsTime?: Expression;
|
|
totalRecharge?: Expression;
|
|
totalWithdraw?: Expression;
|
|
}
|
|
declare class GeneratedWalletFindExtraDto {
|
|
expression: GeneratedWalletFindExpressionDto;
|
|
order: GeneratedWalletFindOrderDto[];
|
|
relations?: GeneratedWalletFindRelationDto;
|
|
}
|
|
declare class GeneratedWalletFindWhereDto {
|
|
id?: number;
|
|
createTime?: string;
|
|
updateTime?: string;
|
|
deleteTime?: string;
|
|
balance?: string;
|
|
frozenBalance?: string;
|
|
publicityFund?: string;
|
|
financialProductEarnings?: string;
|
|
financialProductEarningsTime?: string;
|
|
totalRecharge?: string;
|
|
totalWithdraw?: string;
|
|
}
|
|
declare class GeneratedWalletFindDto {
|
|
paginated?: PaginatedDto;
|
|
where?: GeneratedWalletFindWhereDto;
|
|
extra?: GeneratedWalletFindExtraDto;
|
|
}
|
|
declare const GeneratedWalletDetailWhereDto_base: import("@nestjs/common").Type<Partial<Omit<GeneratedWalletFindWhereDto, "id">>>;
|
|
declare class GeneratedWalletDetailWhereDto extends GeneratedWalletDetailWhereDto_base {
|
|
}
|
|
declare class GeneratedWalletDetailDto {
|
|
where: GeneratedWalletDetailWhereDto;
|
|
extra: GeneratedWalletFindExtraDto;
|
|
}
|
|
export declare class GeneratedWalletController {
|
|
private repos;
|
|
constructor(repos: Repository<WalletModel>);
|
|
list(dto: GeneratedWalletFindDto): Promise<import("src/app/common/api").ApiResponseVo<import("src/app/common/api").PaginatedVo<WalletModel[]>>>;
|
|
detail(id: number, dto: GeneratedWalletDetailDto): Promise<import("src/app/common/api").ApiResponseVo<WalletModel | null | undefined>>;
|
|
}
|
|
export {};
|