|
@@ -27,10 +27,12 @@ export class FVO_dictType {
|
|
|
export class QDTO_dictType extends SearchBase {
|
|
|
constructor() {
|
|
|
const like_prop = [];
|
|
|
- const props = ['code', 'is_use'];
|
|
|
+ const props = ['title', 'code', 'is_use'];
|
|
|
const mapping = [];
|
|
|
super({ like_prop, props, mapping });
|
|
|
}
|
|
|
+ @ApiProperty({ description: '字典类型名称' })
|
|
|
+ 'title': string = undefined;
|
|
|
@ApiProperty({ description: '编码' })
|
|
|
'code': string = undefined;
|
|
|
@ApiProperty({ description: '是否使用' })
|