/***********************************************************************
* Project: CoreCms
* ProjectName: 百分兵法管理系统
* Web: hhtp://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using SqlSugar;
namespace CoreCms.Net.Model.Entities
{
///
/// 经销商订单记录表
///
public partial class CoreCmsDistributionOrder
{
///
/// 购买人昵称
///
[Display(Name = "购买人昵称")]
[SugarColumn(IsIgnore = true)]
public string buyUserNickName { get; set; }
///
/// 购买人头像
///
[Display(Name = "购买人头像")]
[SugarColumn(IsIgnore = true)]
public System.String buyUserAvatar { get; set; }
///
/// 经销商
///
[Display(Name = "经销商")]
[SugarColumn(IsIgnore = true)]
public string distributorName { get; set; }
///
/// 商品总价
///
[Display(Name = "商品总价")]
[SugarColumn(IsIgnore = true)]
public System.Decimal goodsAmount { get; set; }
///
/// 用户支付金额
///
[Display(Name = "用户支付金额")]
[SugarColumn(IsIgnore = true)]
public System.Decimal payedAmount { get; set; }
///
/// 订单详情
///
[Display(Name = "订单详情")]
[SugarColumn(IsIgnore = true)]
public List distributionOrderDetails { get; set; }
}
}