namespace DOAN.Model.MES.mm.line { /// /// mm_line_transaction_log /// [SugarTable("mm_line_transaction_log")] public class MmLineTransactionLog { /// /// 日志记录的唯一标识符 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 操作类型(1出库、3入库、5盘点) /// [SugarColumn(ColumnName = "transaction_type")] public int? TransactionType { get; set; } /// /// 物料编号 /// [SugarColumn(ColumnName = "material_code")] public string MaterialCode { get; set; } /// /// 物理名称 /// [SugarColumn(ColumnName = "material_name")] public string MaterialName { get; set; } /// /// 线别 /// [SugarColumn(ColumnName = "line_code")] public string LineCode { get; set; } /// /// 操作的数量 /// public decimal? Quantity { get; set; } /// /// 库位编号 /// [SugarColumn(ColumnName = "location_code")] public string LocationCode { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 更新时间 /// public DateTime? Updatetime { get; set; } /// /// 更新人 /// public string Updateby { get; set; } /// /// 创建时间 /// public DateTime? Createtime { get; set; } /// /// 创建人 /// public string Createby { get; set; } } }