using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BackupAndImport.Entitys.速推客
{
///
///
///
[SugarTable("会员信息")]
public partial class 会员信息
{
public 会员信息()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 名称 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 姓名 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 支付宝 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 已提现金额 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 结算金额 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 付款金额 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 失效金额 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? 结算订单笔数 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? 付款订单笔数 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? 失效订单笔数 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 签到奖励 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 推广奖励 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 额外奖励 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 加入时间 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 公众号ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string 创建时间 { get; set; }
}
//public class 会员信息
//{
// public string ID { get; set; }
// public string 名称 { get; set; }
// public string 姓名 { get; set; }
// public string 支付宝 { get; set; }
// public double 已提现金额 { get; set; }
// public double 结算金额 { get; set; }
// public double 付款金额 { get; set; }
// public double 失效金额 { get; set; }
// public int 结算订单笔数 { get; set; }
// public int 付款订单笔数 { get; set; }
// public double 失效订单笔数 { get; set; }
// public double 签到奖励 { get; set; }
// public double 推广奖励 { get; set; }
// public double 额外奖励 { get; set; }
// public string 加入时间 { get; set; }
// public string 公众号ID { get; set; }
// //public string 创建时间 { get; set; }
//}
}