|
@@ -32,11 +32,13 @@ export class FVO_Good {
|
|
|
|
|
|
export class QDTO_Good extends SearchBase {
|
|
|
constructor() {
|
|
|
- const like_prop = [];
|
|
|
- const props = ['name', 'type', 'supplier_id', 'is_use'];
|
|
|
+ const like_prop = ['name'];
|
|
|
+ const props = ['_id', 'name', 'type', 'supplier_id', 'is_use'];
|
|
|
const mapping = [];
|
|
|
super({ like_prop, props, mapping });
|
|
|
}
|
|
|
+ @ApiProperty({ description: '数据id' })
|
|
|
+ _id: string = undefined;
|
|
|
@ApiProperty({ description: '名称' })
|
|
|
'name': string = undefined;
|
|
|
@ApiProperty({ description: '类型' })
|