80 lines
2.9 KiB
TypeScript
80 lines
2.9 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 { SystemConfigModel } from '../../model/system_config.model';
|
|
declare class GeneratedSystem_configFindOrderDto {
|
|
id?: OrderBy;
|
|
createTime?: OrderBy;
|
|
updateTime?: OrderBy;
|
|
deleteTime?: OrderBy;
|
|
invitationUrl?: OrderBy;
|
|
customerServiceUrl?: OrderBy;
|
|
depositWeixinUrl?: OrderBy;
|
|
depositAlipayUrl?: OrderBy;
|
|
depositYunshanfuUrl?: OrderBy;
|
|
openDeposit?: OrderBy;
|
|
welfarePool?: OrderBy;
|
|
stockPrice?: OrderBy;
|
|
minWithdrawAmount?: OrderBy;
|
|
minTransferPublicityAmount?: OrderBy;
|
|
}
|
|
declare class GeneratedSystem_configFindRelationDto {
|
|
}
|
|
declare class GeneratedSystem_configFindExpressionDto {
|
|
id?: Expression;
|
|
createTime?: Expression;
|
|
updateTime?: Expression;
|
|
deleteTime?: Expression;
|
|
invitationUrl?: Expression;
|
|
customerServiceUrl?: Expression;
|
|
depositWeixinUrl?: Expression;
|
|
depositAlipayUrl?: Expression;
|
|
depositYunshanfuUrl?: Expression;
|
|
openDeposit?: Expression;
|
|
welfarePool?: Expression;
|
|
stockPrice?: Expression;
|
|
minWithdrawAmount?: Expression;
|
|
minTransferPublicityAmount?: Expression;
|
|
}
|
|
declare class GeneratedSystem_configFindExtraDto {
|
|
expression: GeneratedSystem_configFindExpressionDto;
|
|
order: GeneratedSystem_configFindOrderDto[];
|
|
relations?: GeneratedSystem_configFindRelationDto;
|
|
}
|
|
declare class GeneratedSystem_configFindWhereDto {
|
|
id?: number;
|
|
createTime?: string;
|
|
updateTime?: string;
|
|
deleteTime?: string;
|
|
invitationUrl?: string;
|
|
customerServiceUrl?: string;
|
|
depositWeixinUrl?: string;
|
|
depositAlipayUrl?: string;
|
|
depositYunshanfuUrl?: string;
|
|
openDeposit?: boolean;
|
|
welfarePool?: string;
|
|
stockPrice?: string;
|
|
minWithdrawAmount?: string;
|
|
minTransferPublicityAmount?: string;
|
|
}
|
|
declare class GeneratedSystem_configFindDto {
|
|
paginated?: PaginatedDto;
|
|
where?: GeneratedSystem_configFindWhereDto;
|
|
extra?: GeneratedSystem_configFindExtraDto;
|
|
}
|
|
declare const GeneratedSystem_configDetailWhereDto_base: import("@nestjs/common").Type<Partial<Omit<GeneratedSystem_configFindWhereDto, "id">>>;
|
|
declare class GeneratedSystem_configDetailWhereDto extends GeneratedSystem_configDetailWhereDto_base {
|
|
}
|
|
declare class GeneratedSystem_configDetailDto {
|
|
where: GeneratedSystem_configDetailWhereDto;
|
|
extra: GeneratedSystem_configFindExtraDto;
|
|
}
|
|
export declare class GeneratedSystem_configController {
|
|
private repos;
|
|
constructor(repos: Repository<SystemConfigModel>);
|
|
list(dto: GeneratedSystem_configFindDto): Promise<import("src/app/common/api").ApiResponseVo<import("src/app/common/api").PaginatedVo<SystemConfigModel[]>>>;
|
|
detail(id: number, dto: GeneratedSystem_configDetailDto): Promise<import("src/app/common/api").ApiResponseVo<SystemConfigModel | null | undefined>>;
|
|
}
|
|
export {};
|