30 changed files with 373 additions and 234 deletions
@ -0,0 +1,58 @@ |
|||
using System; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using Win_in.Sfs.Shared.Domain; |
|||
|
|||
namespace Win_in.Sfs.Wms.Store.Application.Contracts; |
|||
|
|||
public class CountJobDependentDetailDTO : SfsJobDetailDTOBase, IHasCountResult |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 盘点标签
|
|||
/// </summary>
|
|||
[Display(Name = "盘点标签")] |
|||
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")] |
|||
public string CountLabel { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 计量单位
|
|||
/// </summary>
|
|||
[Display(Name = "计量单位")] |
|||
public string Uom { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 库存数量
|
|||
/// </summary>
|
|||
[Display(Name = "库存数量")] |
|||
public decimal InventoryQty { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 库存库位
|
|||
/// </summary>
|
|||
[Display(Name = "库存库位")] |
|||
public string InventoryLocationCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 盘点数量
|
|||
/// </summary>
|
|||
[Display(Name = "盘点数量")] |
|||
public decimal CountQty { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 盘点时间
|
|||
/// </summary>
|
|||
[Display(Name = "盘点时间")] |
|||
public DateTime? CountTime { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 盘点操作员
|
|||
/// </summary>
|
|||
[Display(Name = "盘点操作员")] |
|||
public string CountOperator { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 盘点描述
|
|||
/// </summary>
|
|||
[Display(Name = "盘点描述")] |
|||
public string CountDescription { get; set; } |
|||
} |
@ -0,0 +1,51 @@ |
|||
using System; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using Win_in.Sfs.Shared.Domain; |
|||
|
|||
namespace Win_in.Sfs.Wms.Store.Domain; |
|||
|
|||
public class CountJobDependentDetail : SfsJobDetailEntityBase, IHasCountResult, IHasInventoryQty |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 盘点标签
|
|||
/// </summary>
|
|||
public string CountLabel { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 库存数量
|
|||
/// </summary>
|
|||
public decimal InventoryQty { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 计量单位
|
|||
/// </summary>
|
|||
[Display(Name = "计量单位")] |
|||
public string Uom { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 库存库位
|
|||
/// </summary>
|
|||
public string InventoryLocationCode { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 盘点数量(每次扫得数量)
|
|||
/// </summary>
|
|||
public decimal CountQty { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 盘点时间
|
|||
/// </summary>
|
|||
public DateTime? CountTime { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 盘点操作员
|
|||
/// </summary>
|
|||
public string CountOperator { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 盘点描述
|
|||
/// </summary>
|
|||
public string CountDescription { get; set; } |
|||
} |
|||
|
Loading…
Reference in new issue