|
@@ -48,6 +48,8 @@ export class FVO_company {
|
|
|
'brief': string = undefined;
|
|
|
@ApiProperty({ description: '是否公开' })
|
|
|
'is_show': string = undefined;
|
|
|
+ @ApiProperty({ description: '公司状态' })
|
|
|
+ 'companyStatus': string = undefined;
|
|
|
@ApiProperty({ description: '状态' })
|
|
|
'status': string = undefined;
|
|
|
}
|
|
@@ -55,7 +57,7 @@ export class FVO_company {
|
|
|
export class QDTO_company extends SearchBase {
|
|
|
constructor() {
|
|
|
const like_prop = [];
|
|
|
- const props = ['user', 'name', 'tags', 'phone', 'type', 'person', 'create_time', 'is_show', 'status'];
|
|
|
+ const props = ['user', 'name', 'tags', 'phone', 'type', 'person', 'create_time', 'companyStatus','is_show', 'status'];
|
|
|
const mapping = [];
|
|
|
super({ like_prop, props, mapping });
|
|
|
}
|
|
@@ -75,6 +77,8 @@ export class QDTO_company extends SearchBase {
|
|
|
'create_time': string = undefined;
|
|
|
@ApiProperty({ description: '是否公开' })
|
|
|
'is_show': string = undefined;
|
|
|
+ @ApiProperty({ description: '公司状态' })
|
|
|
+ 'companyStatus': string = undefined;
|
|
|
@ApiProperty({ description: '状态' })
|
|
|
'status': string = undefined;
|
|
|
}
|
|
@@ -138,6 +142,9 @@ export class CDTO_company {
|
|
|
@ApiProperty({ description: '是否公开' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'is_show': string = undefined;
|
|
|
+ @ApiProperty({ description: '公司状态' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'companyStatus': string = undefined;
|
|
|
@ApiProperty({ description: '状态' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'status': string = undefined;
|