import { Rule, RuleType } from '@midwayjs/validate'; import { ApiProperty } from '@midwayjs/swagger'; import { SearchBase } from 'free-midway-component'; import get = require('lodash/get'); const dealVO = (cla, data) => { for (const key in cla) { const val = get(data, key); if (val || val === 0) cla[key] = val; } }; export class FVO_user { constructor(data: object) { dealVO(this, data); } @ApiProperty({ description: '数据id' }) _id: string = undefined; @ApiProperty({ description: '账号' }) 'account': string = undefined; @ApiProperty({ description: '密码' }) 'password': string = undefined; @ApiProperty({ description: '昵称' }) 'nick_name': string = undefined; @ApiProperty({ description: '性别' }) 'gender': string = undefined; @ApiProperty({ description: '手机号' }) 'phone': string = undefined; @ApiProperty({ description: '角色' }) 'role': Array = undefined; @ApiProperty({ description: '状态' }) 'status': string = undefined; } export class QDTO_user extends SearchBase { constructor() { const like_prop = []; const props = ['account', 'nick_name', 'phone', 'status']; const mapping = []; super({ like_prop, props, mapping }); } @ApiProperty({ description: '账号' }) 'account': string = undefined; @ApiProperty({ description: '昵称' }) 'nick_name': string = undefined; @ApiProperty({ description: '手机号' }) 'phone': string = undefined; @ApiProperty({ description: '状态' }) 'status': string = undefined; } export class QVO_user extends FVO_user { constructor(data: object) { super(data); dealVO(this, data); } } export class CDTO_user { @ApiProperty({ description: '账号' }) @Rule(RuleType['string']().empty('')) 'account': string = undefined; @ApiProperty({ description: '密码' }) @Rule(RuleType['string']().empty('')) 'password': string = undefined; @ApiProperty({ description: '昵称' }) @Rule(RuleType['string']().empty('')) 'nick_name': string = undefined; @ApiProperty({ description: '性别' }) @Rule(RuleType['string']().empty('')) 'gender': string = undefined; @ApiProperty({ description: '手机号' }) @Rule(RuleType['string']().empty('')) 'phone': string = undefined; @ApiProperty({ description: '角色' }) @Rule(RuleType['array']().empty('')) 'role': Array = undefined; @ApiProperty({ description: '状态' }) @Rule(RuleType['string']().empty('')) 'status': string = undefined; } export class CVO_user extends FVO_user { constructor(data: object) { super(data); dealVO(this, data); } } export class UDTO_user extends CDTO_user { @ApiProperty({ description: '数据id' }) @Rule(RuleType['string']().empty('')) _id: string = undefined; } export class UVAO_user extends FVO_user { constructor(data: object) { super(data); dealVO(this, data); } }