import { Category } from "../model/category.enum"; export class AccountDto { id?: number; name?: string; password?: string; avatar?: string; phone?: string; charactarId?: number; category?: Category; createTime?: number; deleted?: boolean; charactarName?: string; orgId?: number; orgName?: string; operateId?: number; operateName?: string; weixinId?: string; position?: string; tel?: string; };