using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Admin.Core.Model
{
///
///料仓报表
///
[SugarTable("Hw_BinAlarm", "cwss_xl")]
public class Hw_BinAlarm
{
public Hw_BinAlarm()
{
}
///
/// Desc:主键
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// Desc:料仓编码
/// Default:
/// Nullable:True
///
public int BinId { get; set; }
///
/// Desc:料仓名称
/// Default:
/// Nullable:True
///
public string BinName { get; set; }
///
/// Desc:物料编码
/// Default:
/// Nullable:True
///
public string MaterialCode { get; set; }
///
/// Desc:物料名称
/// Default:
/// Nullable:True
///
public string MaterialName { get; set; }
///
/// Desc:物料重量
/// Default:
/// Nullable:True
///
public decimal? Weights { get; set; }
///
/// Desc:创建时间
/// Default:
/// Nullable:True
///
public DateTime? CreateTime { get; set; }
}
}