日志优化,成品库添加移库,AGV上料功能修正,出库计划过滤呆料,毛坯仓库添加实际操作时间
This commit is contained in:
@@ -60,6 +60,8 @@ namespace ZR.Model.MES.wms.Dto
|
||||
|
||||
public int Status { get; set; }
|
||||
|
||||
public DateTime? ActionTime { get; set; }
|
||||
|
||||
public string Remark { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
@@ -131,4 +131,18 @@ namespace ZR.Model.MES.wms.Dto
|
||||
/// </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; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,6 +31,13 @@ namespace ZR.Model.MES.wms
|
||||
[SugarColumn(ColumnName = "change_quantity")]
|
||||
public int? ChangeQuantity { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "action_time")]
|
||||
public DateTime? ActionTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 类别
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user