|
@@ -0,0 +1,129 @@
|
|
|
+import { Rule, RuleType } from '@midwayjs/validate';
|
|
|
+import { ApiProperty } from '@midwayjs/swagger';
|
|
|
+import { SearchBase } from '../../frame/SearchBase';
|
|
|
+import { dealVO } from '../../frame/VOBase';
|
|
|
+export class FVO_support {
|
|
|
+ constructor(data: object) {
|
|
|
+ dealVO(this, data);
|
|
|
+ }
|
|
|
+ @ApiProperty({ description: '数据id' })
|
|
|
+ id: number = undefined;
|
|
|
+ @ApiProperty({ description: '平台用户id' })
|
|
|
+ 'user': number = undefined;
|
|
|
+ @ApiProperty({ description: '标签' })
|
|
|
+ 'tags': Array<any> = undefined;
|
|
|
+ @ApiProperty({ description: '所属产业' })
|
|
|
+ 'industry': string = undefined;
|
|
|
+ @ApiProperty({ description: '名称' })
|
|
|
+ 'name': string = undefined;
|
|
|
+ @ApiProperty({ description: '登记时间' })
|
|
|
+ 'time': string = undefined;
|
|
|
+ @ApiProperty({ description: '服务领域' })
|
|
|
+ 'field': string = undefined;
|
|
|
+ @ApiProperty({ description: '所在地区' })
|
|
|
+ 'area': Array<any> = undefined;
|
|
|
+ @ApiProperty({ description: '地址' })
|
|
|
+ 'address': string = undefined;
|
|
|
+ @ApiProperty({ description: '联系人' })
|
|
|
+ 'contacts': string = undefined;
|
|
|
+ @ApiProperty({ description: '联系电话' })
|
|
|
+ 'phone': string = undefined;
|
|
|
+ @ApiProperty({ description: '简介' })
|
|
|
+ 'brief': string = undefined;
|
|
|
+ @ApiProperty({ description: '是否使用' })
|
|
|
+ 'is_use': string = undefined;
|
|
|
+ @ApiProperty({ description: '状态' })
|
|
|
+ 'status': string = undefined;
|
|
|
+}
|
|
|
+
|
|
|
+export class QDTO_support extends SearchBase {
|
|
|
+ @ApiProperty({ description: '平台用户id' })
|
|
|
+ 'user': number = undefined;
|
|
|
+ @ApiProperty({ description: '标签' })
|
|
|
+ 'tags': Array<any> = undefined;
|
|
|
+ @ApiProperty({ description: '所属产业' })
|
|
|
+ 'industry': string = undefined;
|
|
|
+ @ApiProperty({ description: '名称' })
|
|
|
+ 'name': string = undefined;
|
|
|
+ @ApiProperty({ description: '登记时间' })
|
|
|
+ 'time': string = undefined;
|
|
|
+ @ApiProperty({ description: '服务领域' })
|
|
|
+ 'field': string = undefined;
|
|
|
+ @ApiProperty({ description: '联系人' })
|
|
|
+ 'contacts': string = undefined;
|
|
|
+ @ApiProperty({ description: '联系电话' })
|
|
|
+ 'phone': string = undefined;
|
|
|
+ @ApiProperty({ description: '是否使用' })
|
|
|
+ 'is_use': string = undefined;
|
|
|
+ @ApiProperty({ description: '状态' })
|
|
|
+ 'status': string = undefined;
|
|
|
+}
|
|
|
+
|
|
|
+export class QVO_support extends FVO_support {
|
|
|
+ constructor(data: object) {
|
|
|
+ super(data);
|
|
|
+ dealVO(this, data);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+export class CDTO_support {
|
|
|
+ @ApiProperty({ description: '平台用户id' })
|
|
|
+ @Rule(RuleType['number']().empty(''))
|
|
|
+ 'user': number = undefined;
|
|
|
+ @ApiProperty({ description: '标签' })
|
|
|
+ @Rule(RuleType['array']().empty(''))
|
|
|
+ 'tags': Array<any> = undefined;
|
|
|
+ @ApiProperty({ description: '所属产业' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'industry': string = undefined;
|
|
|
+ @ApiProperty({ description: '名称' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'name': string = undefined;
|
|
|
+ @ApiProperty({ description: '登记时间' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'time': string = undefined;
|
|
|
+ @ApiProperty({ description: '服务领域' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'field': string = undefined;
|
|
|
+ @ApiProperty({ description: '所在地区' })
|
|
|
+ @Rule(RuleType['array']().empty(''))
|
|
|
+ 'area': Array<any> = undefined;
|
|
|
+ @ApiProperty({ description: '地址' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'address': string = undefined;
|
|
|
+ @ApiProperty({ description: '联系人' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'contacts': string = undefined;
|
|
|
+ @ApiProperty({ description: '联系电话' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'phone': string = undefined;
|
|
|
+ @ApiProperty({ description: '简介' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'brief': string = undefined;
|
|
|
+ @ApiProperty({ description: '是否使用' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'is_use': string = undefined;
|
|
|
+ @ApiProperty({ description: '状态' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'status': string = undefined;
|
|
|
+}
|
|
|
+
|
|
|
+export class CVO_support extends FVO_support {
|
|
|
+ constructor(data: object) {
|
|
|
+ super(data);
|
|
|
+ dealVO(this, data);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+export class UDTO_support extends CDTO_support {
|
|
|
+ @ApiProperty({ description: '数据id' })
|
|
|
+ @Rule(RuleType['number']().empty(''))
|
|
|
+ id: number = undefined;
|
|
|
+}
|
|
|
+
|
|
|
+export class UVAO_support extends FVO_support {
|
|
|
+ constructor(data: object) {
|
|
|
+ super(data);
|
|
|
+ dealVO(this, data);
|
|
|
+ }
|
|
|
+}
|