149 lines
3.7 KiB
C#
149 lines
3.7 KiB
C#
namespace ZR.Model.MES.wms.Dto
|
|
{
|
|
/// <summary>
|
|
/// 成品库当前货物表查询对象
|
|
/// </summary>
|
|
public class WmGoodsNowProductionQueryDto : PagerInfo
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string PackageCode { get; set; }
|
|
|
|
public string PackageCodeClient { get; set; }
|
|
|
|
public string PackageCodeOriginal { get; set; }
|
|
|
|
public string LocationCode { get; set; }
|
|
|
|
public string Partnumber { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public int? GoodsNumLogic { get; set; }
|
|
|
|
public int? GoodsNumAction { get; set; }
|
|
|
|
public DateTime? EntryWarehouseTime { get; set; }
|
|
public DateTime? EntryWarehouseTimeStart { get; set; }
|
|
public DateTime? EntryWarehouseTimeEnd { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 成品库当前货物表输入输出对象
|
|
/// </summary>
|
|
public class WmGoodsNowProductionDto
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string PackageCode { get; set; }
|
|
|
|
public string PackageCodeClient { get; set; }
|
|
|
|
public string PackageCodeOriginal { get; set; }
|
|
|
|
public string LocationCode { get; set; }
|
|
|
|
public string Partnumber { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public int? GoodsNumLogic { get; set; }
|
|
|
|
public int? GoodsNumAction { get; set; }
|
|
|
|
public DateTime? EntryWarehouseTime { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 成品库当前货物表查询对象(下拉菜单)
|
|
/// </summary>
|
|
public class WmGoodsNowProductionDictDto : PagerInfo
|
|
{
|
|
// 查询值==============
|
|
/// <summary>
|
|
/// 搜索条件
|
|
/// </summary>
|
|
public string Query { get; set; } = string.Empty;
|
|
|
|
// 返回值==============
|
|
/// <summary>
|
|
/// 成品库货物id
|
|
/// </summary>
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批次号(MES中)
|
|
/// </summary>
|
|
public string PackageCodeClient { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 库位号
|
|
/// </summary>
|
|
public string LocationCode { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 零件号
|
|
/// </summary>
|
|
public string Partnumber { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 详细描述
|
|
/// </summary>
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 入库时库存
|
|
/// </summary>
|
|
public int? GoodsNumLogic { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 当前实际库存!
|
|
/// </summary>
|
|
public int? GoodsNumAction { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 下拉显示值
|
|
/// </summary>
|
|
public string Label { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 下拉实际值
|
|
/// </summary>
|
|
public object Value { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 批量修改成品库库存
|
|
/// </summary>
|
|
public class BatchUpdateLocationCodeDto
|
|
{
|
|
public List<string> Ids { get; set; }
|
|
|
|
public string LocationCode { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
}
|
|
}
|