仓库-仓库日志功能代码提交
This commit is contained in:
43
ZR.Model/MES/wms/Dto/WmGoodsChangeLogDto.cs
Normal file
43
ZR.Model/MES/wms/Dto/WmGoodsChangeLogDto.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 仓库操作日志查询对象
|
||||
/// </summary>
|
||||
public class WmGoodsChangeLogQueryDto : PagerInfo
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int Type { get; set; }
|
||||
|
||||
public string Description { get; set; }
|
||||
public string StartTimeStr { get; set; }
|
||||
public string EndTimeStr { get; set; }
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 仓库操作日志输入输出对象
|
||||
/// </summary>
|
||||
public class WmGoodsChangeLogDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public int Type { get; set; }
|
||||
|
||||
public string Description { get; set; }
|
||||
|
||||
public string JsonMsg { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user