zs 1 rok temu
rodzic
commit
984581b41a

+ 2 - 0
src/entity/platform/match.entity.ts

@@ -10,6 +10,8 @@ export class Match extends BaseModel {
   name: string;
   @prop({ required: false, index: true, zh: '类型' })
   type: string;
+  @prop({ required: false, index: true, zh: '组织单位' })
+  work: string;
   @prop({ required: false, index: true, zh: '行业' })
   industry: string;
   @prop({ required: false, index: true, zh: '类别' })

+ 5 - 0
src/interface/platform/match.interface.ts

@@ -20,6 +20,8 @@ export class FVO_match {
   'name': string = undefined;
   @ApiProperty({ description: '类型' })
   'type': string = undefined;
+  @ApiProperty({ description: '组织单位' })
+  'work': string = undefined;
   @ApiProperty({ description: '行业' })
   'industry': string = undefined;
   @ApiProperty({ description: '类别' })
@@ -84,6 +86,9 @@ export class CDTO_match {
   @ApiProperty({ description: '类型' })
   @Rule(RuleType['string']().empty(''))
   'type': string = undefined;
+  @ApiProperty({ description: '组织单位' })
+  @Rule(RuleType['string']().empty(''))
+  'work': string = undefined;
   @ApiProperty({ description: '行业' })
   @Rule(RuleType['string']().empty(''))
   'industry': string = undefined;