liaoxujun@qq.com
2024-04-01 68bcb554b91c0da1b7765142cc95ba0b5ade1a5a
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
using Chuanyin.Attribute;
using CoreCms.Net.Model.Entities.baseModel;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CoreCms.Net.Model.Entities.baifenbingfa.Promote.OffLineDistributor
{
    /// <summary>
    /// 
    /// </summary>
    [Display(Name = "线下经销商采集")]
    [SugarTable(TableDescription = "线下经销商采集")]
    [SqlCodeFirst]
    public class OfflineDistributorOder: BFBaseModel
    {
 
        /// <summary>
        /// 主键ID,自增长
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键ID")]
        public int Id { get; set; }
        /// <summary>
        /// 单价
        /// </summary>
        [Display(Name = "单价")]
        [SugarColumn(ColumnDescription = "商品单价", IsNullable = true)]
        public decimal UnitPrice { get; set; }
        /// <summary>
        /// 时间
        /// </summary>
        [Display(Name = "时间")]
        [SugarColumn(ColumnDescription = "时间")]
        public DateTime time { get; set; }
        /// <summary>
        /// 货物名称
        /// </summary>
        [Display(Name = "货物名称")]
        [SugarColumn(ColumnDescription = "商品名称", IsNullable = true)]
        public string GoodsName { get; set; }
 
        /// <summary>
        /// 货物编码
        /// </summary>
        [Display(Name = "货物编码")]
        [SugarColumn(ColumnDescription = "商品编码", IsNullable = true)]
        public string GoodsCode { get; set; }
 
        /// <summary>
        /// 订货数量
        /// </summary>
        [Display(Name = "订货数量")]
        [SugarColumn(ColumnDescription = "订购数量", IsNullable = true)]
        public int OrderQuantity { get; set; }
 
        /// <summary>
        /// 订货时间
        /// </summary>
        [Display(Name = "订货时间")]
        [SugarColumn(ColumnDescription = "订购时间", IsNullable = true)]
        public DateTime? OrderTime { get; set; }
 
        /// <summary>
        /// 实付金额
        /// </summary>
        [Display(Name = "实付金额")]
        [SugarColumn(ColumnDescription = "实际支付金额", IsNullable = true)]
        public decimal ActualPayment { get; set; }
 
        /// <summary>
        /// 发货时间
        /// </summary>
        [Display(Name = "发货时间")]
        [SugarColumn(ColumnDescription = "发货时间", IsNullable = true)]
        public DateTime? DeliveryTime { get; set; }
 
        /// <summary>
        /// 发货单号
        /// </summary>
        [Display(Name = "发货单号")]
        [SugarColumn(ColumnDescription = "发货单编号", IsNullable = true)]
        public string DeliveryNumber { get; set; }
 
        /// <summary>
        /// 快递公司
        /// </summary>
        [Display(Name = "快递公司")]
        [SugarColumn(ColumnDescription = "快递公司名称", IsNullable = true)]
        public string ExpressCompany { get; set; }
 
        /// <summary>
        /// 发货数量(如果与订货数量不同步,单独列出)
        /// </summary>
        [Display(Name = "发货数量")]
        [SugarColumn(ColumnDescription = "实际发货数量", IsNullable = true)]
        public int ShippedQuantity { get; set; }
 
        /// <summary>
        /// 退款金额
        /// </summary>
        [Display(Name = "退款金额")]
        [SugarColumn(ColumnDescription = "退款金额", IsNullable = true)]
        public decimal? RefundAmount { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [Display(Name = "备注")]
        [SugarColumn(ColumnDescription = "订单备注", IsNullable =true)]
        public string Remarks { get; set; }
 
        /// <summary>
        /// 经销商表ID
        /// </summary>
        [Display(Name = "经销商表ID")]
        [SugarColumn(ColumnDescription = "经销商表ID")]
        public int OfflineDistributorID { get; set; }
    }
}