liaoxujun@qq.com
2024-02-28 9f8e542b9b74fe18a6a4e0a00fef4b50e3e62581
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/***********************************************************************
 *            Project: CoreCms
 *        ProjectName: 核心内容管理系统                                
 *                Web: https://www.corecms.net                      
 *             Author: 大灰灰                                          
 *              Email: jianweie@163.com                                
 *         CreateTime: 2021/1/31 21:45:10
 *        Description: 暂无
 ***********************************************************************/
 
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using SqlSugar;
 
namespace CoreCms.Net.Model.Entities
{
    /// <summary>
    ///     分销商订单记录表
    /// </summary>
    public partial class CoreCmsDistributionOrder
    {
        /// <summary>
        ///     购买人昵称
        /// </summary>
        [Display(Name = "购买人昵称")]
        [SugarColumn(IsIgnore = true)]
        public string buyUserNickName { get; set; }
 
 
        /// <summary>
        /// 购买人头像
        /// </summary>
        [Display(Name = "购买人头像")]
        [SugarColumn(IsIgnore = true)]
        public System.String buyUserAvatar { get; set; }
 
 
        /// <summary>
        ///     分销商
        /// </summary>
        [Display(Name = "分销商")]
        [SugarColumn(IsIgnore = true)]
        public string distributorName { get; set; }
 
 
        /// <summary>
        /// 商品总价
        /// </summary>
        [Display(Name = "商品总价")]
        [SugarColumn(IsIgnore = true)]
        public System.Decimal goodsAmount { get; set; }
 
        /// <summary>
        /// 用户支付金额
        /// </summary>
        [Display(Name = "用户支付金额")]
        [SugarColumn(IsIgnore = true)]
        public System.Decimal payedAmount { get; set; }
 
        /// <summary>
        /// 订单详情
        /// </summary>
        [Display(Name = "订单详情")]
        [SugarColumn(IsIgnore = true)]
        public List<CoreCmsDistributionOrderDetails> distributionOrderDetails { get; set; }
 
 
    }
}