using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Admin.Core.Model
{
///
///桶管理
///
[SugarTable("Hw_Barrel", "cwss_xl")]
public class Hw_Barrel
{
public Hw_Barrel()
{
}
///
/// Desc:主键
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
///
/// Desc:guid
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string BarrelID { get; set; }
///
/// Desc:名称
/// Default:
/// Nullable:True
///
public string BarrelName { get; set; }
///
/// Desc:条码Code
/// Default:
/// Nullable:True
///
public string BarCode { get; set; }
///
/// Desc:物料号实际是配方号ID
/// Default:
/// Nullable:True
///
public string MaterialID { get; set; }
///
/// Desc:物料名称实际是配方名称
/// Default:
/// Nullable:True
///
public string MaterialName { get; set; }
///
/// 计划ID
///
public string PlanId { get; set; }
///
/// Desc:绑定桶的物料重量
/// Default:
/// Nullable:True
///
public decimal? Weight { get; set; }
///
/// Desc:是否启用
/// Default:
/// Nullable:True
///
public string IsEnable { get; set; }
///
/// Desc:备注
/// Default:
/// Nullable:True
///
public string Remark { get; set; }
///
/// Desc:创建时间
/// Default:
/// Nullable:True
///
public DateTime? CreateDateTime { get; set; }
///
/// Desc:更新时间
/// Default:
/// Nullable:True
///
public DateTime? UpdateTime { get; set; }
}
}