websoft-uniapp仓库模板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

55 lines
964 B

import type { PageParam } from '@/api';
/**
* 用户
*/
export interface User {
// 用户id
userId?: number;
// 账号
username?: string;
// 密码
password?: string;
// 昵称
nickname?: string;
// 头像
avatar?: string;
// 性别(字典)
sex?: string;
// 手机号
phone?: string;
// 邮箱
email?: string;
// 出生日期
birthday?: string;
// 手机号
address?: string;
// 个人简介
introduction?: string;
// 机构id
organizationId?: number;
// 状态, 0正常, 1冻结
status?: number;
// 性别名称
sexName?: string;
// 机构名称
organizationName?: string;
// 创建时间
createTime?: string;
}
/**
* 用户搜索条件
*/
export interface UserParam extends PageParam {
userId?: number;
username?: string;
nickname?: string;
sex?: string;
phone?: string;
status?: number;
organizationId?: number;
sexName?: string;
// 商户编号
merchantCode?: string;
}