|
@@ -34,13 +34,24 @@ export class FVO_relevantdownload {
|
|
|
export class QDTO_relevantdownload extends SearchBase {
|
|
|
constructor() {
|
|
|
const like_prop = [];
|
|
|
- const props = [];
|
|
|
+ const props = ['user_id', 'title', 'date', 'origin', 'is_use'];
|
|
|
const mapping = [];
|
|
|
super({ like_prop, props, mapping });
|
|
|
}
|
|
|
+ @ApiProperty({ description: '绑定用户' })
|
|
|
+ 'user_id': string = undefined;
|
|
|
+ @ApiProperty({ description: '标题' })
|
|
|
+ 'title': string = undefined;
|
|
|
+ @ApiProperty({ description: '发布时间' })
|
|
|
+ 'date': string = undefined;
|
|
|
+ @ApiProperty({ description: '来源' })
|
|
|
+ 'origin': string = undefined;
|
|
|
+ @ApiProperty({ description: '是否启用' })
|
|
|
+ 'is_use': string = undefined;
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
export class QVO_relevantdownload extends FVO_relevantdownload {
|
|
|
constructor(data: object) {
|
|
|
super(data);
|