guhongwei %!s(int64=2) %!d(string=hai) anos
pai
achega
7a66a20490
Modificáronse 1 ficheiros con 12 adicións e 1 borrados
  1. 12 1
      src/interface/relevantdownload.interface.ts

+ 12 - 1
src/interface/relevantdownload.interface.ts

@@ -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);