Files
shanghaigangxiangtuzhuangMES/ZR.Model/MES/wms/WmGoodsChangeLog.cs
2024-05-29 08:57:56 +08:00

56 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace ZR.Model.MES.wms
{
/// <summary>
/// 仓库操作日志
/// </summary>
[SugarTable("wm_goods_change_log")]
public class WmGoodsChangeLog
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 操作类型;0-默认 1-拼箱 2-拆箱 3-移库 4-待定。。。其余待定
/// </summary>
public int Type { get; set; }
/// <summary>
/// 描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 内容;存入json格式字符串根据type类型不同灵活存储不同数据不可解析算作空
/// </summary>
public string JsonMsg { get; set; }
/// <summary>
/// 创建人
/// </summary>
[SugarColumn(ColumnName = "cREATED_BY")]
public string CreatedBy { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "cREATED_TIME")]
public DateTime? CreatedTime { get; set; }
/// <summary>
/// 更新人
/// </summary>
[SugarColumn(ColumnName = "uPDATED_BY")]
public string UpdatedBy { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[SugarColumn(ColumnName = "uPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}