/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System;
namespace CoreCms.Net.Model.FromBody
{
///
/// APi
///
public class EditInfoPost
{
public DateTime? birthday { get; set; }
public string nickname { get; set; }
public int sex { get; set; }
}
///
/// 编辑后端登录个人账户密码
///
public class EditPwdPost
{
public string newpwd { get; set; }
public string repwd { get; set; }
public string pwd { get; set; }
}
///
/// 编辑登录用户个人信息
///
public class EditLoginUserInfo
{
///
/// 昵称
///
public string nickName { get; set; }
///
/// 头像
///
public string avatar { get; set; }
///
/// 性别
///
public int sex { get; set; }
///
/// 手机号
///
public string phone { get; set; }
///
/// 邮箱
///
public string email { get; set; }
///
/// 真实姓名
///
public string trueName { get; set; }
///
/// 身份证号
///
public string idCard { get; set; }
///
/// 出生日期
///
public DateTime? birthday { get; set; }
///
/// 个人简介
///
public string introduction { get; set; }
}
///
/// API取回密码提交参数
///
public class FMForgetPwdPost
{
///
/// 电话号码
///
public string mobile { get; set; }
///
/// 编码
///
public string code { get; set; }
///
/// 新密码
///
public string newpwd { get; set; }
///
/// 确认新密码
///
public string repwd { get; set; }
}
///
/// API取回密码提交参数
///
public class FMGetBalancePost
{
///
/// 类型
///
public int id { get; set; } = 0;
///
/// 页码
///
public int page { get; set; } = 1;
///
/// 每页条数
///
public int limit { get; set; } = 10;
///
/// 时间范围
///
public string propsDate { get; set; }
}
public class FMUserTocash
{
///
/// 提现记录序列
///
public int id { get; set; }
///
/// 设置状态
///
public int status { get; set; }
///
/// 提现方式
///
public int type { get; set; }
}
}