|
|
@ -8,7 +8,7 @@ namespace Win.Sfs.SettleAccount.Entities.KanBan |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
/*看板条码号 |
|
|
|
/* 看板条码号 |
|
|
|
* 入库关联号 |
|
|
|
* 工厂 |
|
|
|
* 零件号 |
|
|
@ -25,12 +25,66 @@ namespace Win.Sfs.SettleAccount.Entities.KanBan |
|
|
|
* 数量 |
|
|
|
* 结算状态 |
|
|
|
*/ |
|
|
|
class KanBan |
|
|
|
public class KanBan |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
/// 看板条码号
|
|
|
|
/// </summary>
|
|
|
|
public string Kanban { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 入库关联号
|
|
|
|
/// </summary>
|
|
|
|
public string Relation { set; get; } |
|
|
|
/// <summary>
|
|
|
|
/// 工厂
|
|
|
|
/// </summary>
|
|
|
|
public string Factory { set; get; } |
|
|
|
/// <summary>
|
|
|
|
/// 零件号
|
|
|
|
/// </summary>
|
|
|
|
public string MaterialCode { set; get; } |
|
|
|
/// <summary>
|
|
|
|
/// 零件类型
|
|
|
|
/// </summary>
|
|
|
|
public string PartType { set; get; } |
|
|
|
/// <summary>
|
|
|
|
/// 供应商编码
|
|
|
|
/// </summary>
|
|
|
|
public string SupplierCode { set; get; } |
|
|
|
/// <summary>
|
|
|
|
/// R3入库时间
|
|
|
|
/// </summary>
|
|
|
|
public DateTime SettleInputDate { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 批次
|
|
|
|
/// </summary>
|
|
|
|
public string Batch { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 入库结算标识
|
|
|
|
/// </summary>
|
|
|
|
public string Flag { set; get; } |
|
|
|
/// <summary>
|
|
|
|
/// 数量
|
|
|
|
/// </summary>
|
|
|
|
public decimal Qty { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// R3结算时间
|
|
|
|
/// </summary>
|
|
|
|
public DateTime SettleDate { set; get; } |
|
|
|
/// <summary>
|
|
|
|
/// 结算状态
|
|
|
|
/// </summary>
|
|
|
|
public int State { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|