namespace DOAN.Model.MES.mm
{
///
/// 线边库出入库日志
///
[SugarTable("mm_linesidebar_inventory_outbound_and_inbound")]
public class MmLinesidebarInventoryOutboundAndInbound
{
///
/// 雪花
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public string Id { get; set; }
///
/// 线code
///
[SugarColumn(ColumnName = "line_code")]
public string LineCode { get; set; }
///
/// 物料code
///
[SugarColumn(ColumnName = "material_code")]
public string MaterialCode { get; set; }
///
/// 物料名称
///
[SugarColumn(ColumnName = "material_name")]
public string MaterialName { get; set; }
///
/// (1出库,2取消出库 ,3入库,,4取消入库)
///
public int? Action { get; set; }
///
/// 数量
///
public decimal Quantity { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "remark")]
public string Remark { get; set; }
///
/// 工单
///
[SugarColumn(ColumnName = "workorder")]
public string WorkOrder { get; set; }
///
/// 任务code
///
[SugarColumn(ColumnName = "task_code")]
public string TaskCode { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "cREATED_BY")]
public string CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "cREATED_TIME")]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "uPDATED_BY")]
public string UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "uPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}