You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Model
|
|
|
|
|
{
|
|
|
|
|
///<summary>
|
|
|
|
|
///桶管理
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("Hw_Barrel", "cwss_xl")]
|
|
|
|
|
public class Hw_Barrel
|
|
|
|
|
{
|
|
|
|
|
public Hw_Barrel()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:主键
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:guid
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
|
|
|
public string BarrelID { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:名称
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BarrelName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:条码Code
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BarCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:物料号实际是配方号ID
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MaterialID { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:物料名称实际是配方名称
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MaterialName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:物料ID
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Material_KeyID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:物料名称
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Material_KeyName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 计划ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PlanId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:绑定桶的物料重量
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal? Weight { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:是否启用
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string IsEnable { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:备注
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:创建时间
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime? CreateDateTime { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:更新时间
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime? UpdateTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|