|
|
@ -1,5 +1,6 @@ |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
using System.Linq; |
|
|
|
using System.Text; |
|
|
|
using System.Threading.Tasks; |
|
|
@ -30,11 +31,13 @@ namespace Win.Sfs.SettleAccount.Entities.KanBan |
|
|
|
/// <summary>
|
|
|
|
/// 看板条码号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "看板条码号")] |
|
|
|
public string Kanban { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 入库关联号
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
public string Relation { set; get; } |
|
|
|
/// <summary>
|
|
|
|
/// 工厂
|
|
|
@ -61,28 +64,35 @@ namespace Win.Sfs.SettleAccount.Entities.KanBan |
|
|
|
/// <summary>
|
|
|
|
/// 批次
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "")] |
|
|
|
public string Batch { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 入库结算标识
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "")] |
|
|
|
public string Flag { set; get; } |
|
|
|
/// <summary>
|
|
|
|
/// 数量
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "数量")] |
|
|
|
public decimal Qty { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// R3结算时间
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "结算日期")] |
|
|
|
public DateTime SettleDate { set; get; } |
|
|
|
/// <summary>
|
|
|
|
/// 结算状态
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name ="结算状态")] |
|
|
|
public int State { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|