m
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
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 { DailyMeetingModel } from '../../model/daily_meeting.model';
|
||||
declare class GeneratedDaily_meetingFindOrderDto {
|
||||
id?: OrderBy;
|
||||
createTime?: OrderBy;
|
||||
updateTime?: OrderBy;
|
||||
deleteTime?: OrderBy;
|
||||
title?: OrderBy;
|
||||
description?: OrderBy;
|
||||
liveUrl?: OrderBy;
|
||||
remark?: OrderBy;
|
||||
}
|
||||
declare class GeneratedDaily_meetingFindRelationDto {
|
||||
}
|
||||
declare class GeneratedDaily_meetingFindExpressionDto {
|
||||
id?: Expression;
|
||||
createTime?: Expression;
|
||||
updateTime?: Expression;
|
||||
deleteTime?: Expression;
|
||||
title?: Expression;
|
||||
description?: Expression;
|
||||
liveUrl?: Expression;
|
||||
remark?: Expression;
|
||||
}
|
||||
declare class GeneratedDaily_meetingFindExtraDto {
|
||||
expression: GeneratedDaily_meetingFindExpressionDto;
|
||||
order: GeneratedDaily_meetingFindOrderDto[];
|
||||
relations?: GeneratedDaily_meetingFindRelationDto;
|
||||
}
|
||||
declare class GeneratedDaily_meetingFindWhereDto {
|
||||
id?: number;
|
||||
createTime?: string;
|
||||
updateTime?: string;
|
||||
deleteTime?: string;
|
||||
title?: string;
|
||||
description?: string;
|
||||
liveUrl?: string;
|
||||
remark?: string;
|
||||
}
|
||||
declare class GeneratedDaily_meetingFindDto {
|
||||
paginated?: PaginatedDto;
|
||||
where?: GeneratedDaily_meetingFindWhereDto;
|
||||
extra?: GeneratedDaily_meetingFindExtraDto;
|
||||
}
|
||||
declare const GeneratedDaily_meetingDetailWhereDto_base: import("@nestjs/common").Type<Partial<Omit<GeneratedDaily_meetingFindWhereDto, "id">>>;
|
||||
declare class GeneratedDaily_meetingDetailWhereDto extends GeneratedDaily_meetingDetailWhereDto_base {
|
||||
}
|
||||
declare class GeneratedDaily_meetingDetailDto {
|
||||
where: GeneratedDaily_meetingDetailWhereDto;
|
||||
extra: GeneratedDaily_meetingFindExtraDto;
|
||||
}
|
||||
export declare class GeneratedDaily_meetingController {
|
||||
private repos;
|
||||
constructor(repos: Repository<DailyMeetingModel>);
|
||||
list(dto: GeneratedDaily_meetingFindDto): Promise<import("src/app/common/api").ApiResponseVo<import("src/app/common/api").PaginatedVo<DailyMeetingModel[]>>>;
|
||||
detail(id: number, dto: GeneratedDaily_meetingDetailDto): Promise<import("src/app/common/api").ApiResponseVo<DailyMeetingModel | null | undefined>>;
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user