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; }
|
}
|
}
|