using SqlSugar; using System; using System.ComponentModel; namespace Tiger.Model.Minsun { /// /// 实体:MesMaterial /// [Description("Primary:Id")] [Serializable] [SugarTable("MesMaterial")] public class WMS_MesMaterial : iDBEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public int Id { get; set; } /// /// /// public string MCode { get; set; } /// /// /// public string MName { get; set; } /// /// /// public string MDesc { get; set; } /// /// /// public string MUom { get; set; } /// /// /// public string MtypeCode { get; set; } /// /// /// public string MtypeName { get; set; } /// /// /// public string MControlTypeCode { get; set; } /// /// /// public string MControlTypeName { get; set; } /// /// /// public string MGroupCode { get; set; } /// /// /// public string Remark { get; set; } /// /// /// public DateTime LastModificationTime { get; set; } = DateTime.MinValue; /// /// /// public long LastModifierUserId { get; set; } /// /// /// public DateTime CreationTime { get; set; } = DateTime.MinValue; /// /// /// public long CreatorUserId { get; set; } /// /// /// public int PERIODDAYS { get; set; } /// /// /// public bool FIFO { get; set; } = false; /// /// /// public double SAFEQTY { get; set; } /// /// /// public bool IsExceed { get; set; } = false; /// /// /// public string Keeper { get; set; } } }