|
@@ -28,6 +28,8 @@ export class FVO_User {
|
|
|
'street': string = undefined;
|
|
|
@ApiProperty({ description: '所属社区' })
|
|
|
'community': string = undefined;
|
|
|
+ @ApiProperty({ description: '创建时间' })
|
|
|
+ 'create_time': string = undefined;
|
|
|
@ApiProperty({ description: '微信id' })
|
|
|
'openid': string = undefined;
|
|
|
@ApiProperty({ description: '状态' })
|
|
@@ -45,6 +47,7 @@ export class QDTO_User extends SearchBase {
|
|
|
'street',
|
|
|
'community',
|
|
|
'openid',
|
|
|
+ 'create_time',
|
|
|
'status',
|
|
|
];
|
|
|
const mapping = [];
|
|
@@ -64,6 +67,8 @@ export class QDTO_User extends SearchBase {
|
|
|
'community': string = undefined;
|
|
|
@ApiProperty({ description: '微信id' })
|
|
|
'openid': string = undefined;
|
|
|
+ @ApiProperty({ description: '创建时间' })
|
|
|
+ 'create_time': string = undefined;
|
|
|
@ApiProperty({ description: '状态' })
|
|
|
'status': string = undefined;
|
|
|
}
|
|
@@ -97,6 +102,9 @@ export class CDTO_User {
|
|
|
@ApiProperty({ description: '所属社区' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'community': string = undefined;
|
|
|
+ @ApiProperty({ description: '创建时间' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'create_time': string = undefined;
|
|
|
@ApiProperty({ description: '微信id' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'openid': string = undefined;
|