zhuangpei-mesbackend/DOAN.Model/MES/mm/line/MmLineTransactionLog.cs
2025-03-31 14:13:56 +08:00

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