using New_College.Common;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
///
/// 此表用户绑定后添加和直接购买
///
public class V_OrderInfo : DEntityRootTenant
{
///
/// 1支付宝支付 0微信支付
///
[SugarColumn(IsNullable = true)]
public EnumPayType PayType { get; set; }
///
/// 状态
///
public EnumOrderType Status { get; set; }
///
/// 价格
///
public decimal Price { get; set; }
///
/// 实付款
///
public decimal PayPrice { get; set; }
///
/// 卡Id
///
[SugarColumn(IsNullable = true)]
public int CardId { get; set; }
///
/// 卡号
///
[SugarColumn(IsNullable = true)]
public string CardNo { get; set; }
///
/// 卡类型Id
///
public int CardTypeId { get; set; }
///
/// 用户Id
///
public int CustomerId { get; set; }
///
///
///
public string Name { get; set; }
///
///
///
[SugarColumn(IsNullable = true)]
public string out_trade_no { get; set; }
///
/// 订单号
///
[SugarColumn(IsNullable = true)]
public string OrderId { get; set; }
}
}