using System;
using System.Collections.Generic;
using GxPress.Common.Page;
namespace GxPress.Request.User
{
public class UserRequest
{
}
///
///
///
public class UserInfoRequest
{
///
/// 手机
///
public string Phone { get; set; }
///
/// 昵称
///
public string Nick { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 头像地址
///
public string AvatarUrl { get; set; }
///
/// 性别
/// Gender
///
public string Gender { get; set; }
///
/// 角色id
///
public int RoleId { get; set; }
///
/// 部门id
///
public IEnumerable DepartmentId { get; set; }
///
/// 部门id
///
public string DepartmentName { get; set; }
///
/// 职位
///
public string Position { get; set; }
///
/// 邮箱
///
public string Email { get; set; }
///
/// 签名
///
public string Signature { get; set; }
///
/// 自我介绍
///
public string Description { get; set; }
///
/// 是否是领导
///
public int IsLeader { get; set; }
///
/// 入职时间
///
public DateTime EntryDataTime { get; set; }
///
/// 城市
///
public string City { get; set; }
///
/// 是否接收私信
///
public int IsPrivateLetter { get; set; }
///
/// 是否接收通知
///
public int IsNotice { get; set; }
///
/// 是否接收回复
///
public int IsReply { get; set; }
///
/// 是否静音
///
public int IsMute { get; set; }
///
/// 是否震动
///
public int IsShake { get; set; }
///
/// 环信ID
///
public string ImId { get; set; }
///
/// 二维码
///
public string QRCoder { get; set; }
///
/// 是否上传
///
///
public int IsUpload { get; set; }
///
/// 是否禁用
///
///
public int IsDisable { get; set; }
///
/// 禁用到期时间
///
///
public string DisableTiem { get; set; }
///
/// 微信唯一标示码
///
///
public string OpenId { get; set; }
///
/// 是否VIP
///
///
public int IsVip { get; set; }
///
/// 会员类型 月卡 季卡 年卡
///
///
public int TypeId { get; set; }
///
/// 终端 pc android ios
///
///
public int Port { get; set; }
///
/// 会员开始时间
///
///
public DateTime BeginTime { get; set; }
///
/// 会员结束时间
///
///
public DateTime EndTime { get; set; }
///
/// 累计价格
///
///
public decimal AccumulativePrice { get; set; }
///
/// 是否自动续费
///
///
public int IsRenewal { get; set; }
///
/// 备注
///
///
public string Remark { get; set; }
///
/// 是否冻结
///
///
public int IsFreeze { get; set; }
}
///
/// 会员用户
///
public class UserSearchVipRequest : PageParameter
{
///
/// 搜索内容
///
///
public string KeyWord { get; set; }
///
/// 月卡 1,季卡 2,年卡 3 ,0全部
///
///
public int VipTypeId { get; set; }
///
/// 终端 Pc = 1, Android = 2,Ios = 3,0全部
///
///
public int VipPort { get; set; }
///
/// 黑名单 设置 2 未设置 0 全部
///
///
public int IsDisable { get; set; }
///
/// 是否冻结 1 冻结 2未冻结
///
///
public int IsFreeze { get; set; }
///
/// 是否 VIP 1是 2否 0 全部
///
///
public int IsVip { get; set; }
///
/// 开始累计价格
///
///
public decimal BeginAccumulativePrice { get; set; }
///
/// 结束累计价格
///
///
public decimal EndAccumulativePrice { get; set; }
///
/// 续费次数
///
///
public int RenewalCount { get; set; }
}
///
/// 修改用户
///
public class UserUpdateDisableRequest
{
///
/// id
///
///
public List Ids { get; set; }
///
/// 启用
///
///
public bool IsDisable { get; set; }
}
}