123 lines
3.7 KiB
C#
123 lines
3.7 KiB
C#
using System;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using SqlSugar;
|
||
|
||
namespace MyCode.Project.Domain.Model
|
||
{
|
||
///<summary>
|
||
///
|
||
///</summary>
|
||
[SugarTable("PushKingDeeOrder")]
|
||
public partial class PushKingDeeOrder
|
||
{
|
||
public PushKingDeeOrder(){
|
||
|
||
|
||
}
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey=true,ColumnName="id")]
|
||
public Guid Id {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:店铺编码
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="shopCode")]
|
||
public string ShopCode {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="shopName")]
|
||
public string ShopName {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:店铺id
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="shopId")]
|
||
public long? ShopId {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="warehouseName")]
|
||
public string WarehouseName {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="warehouseCode")]
|
||
public string WarehouseCode {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:DateTime.Now
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="createTime")]
|
||
public DateTime? CreateTime {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:DateTime.Now
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="updateTime")]
|
||
public DateTime? UpdateTime {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:0=未处理 1=已合并 2=已推送
|
||
/// Default:0
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="status")]
|
||
public int? Status {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:发货时间
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="consignTime")]
|
||
public DateTime? ConsignTime {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="warehouseId")]
|
||
public string WarehouseId {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:订单类型 销售单类型(1:零售业务;2:代发货(来自分销商);3:预售订单;4:周期性订购;5:代销售(供货商发货);6:现款现货;7:售后发货;8:售后退货;9:批发业务(B2B);10:试销业务;11:错漏调整;12:仅退款;13:销售返利;14:大B2B业务;15物流买赔;16销售对账差异 91:自定义1;92:自定义2;93:自定义3...100:自定义10)
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public int? TradeType {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(IsIdentity=true)]
|
||
public int Sheet {get;set;}
|
||
|
||
}
|
||
}
|