using System; using System.Linq; using System.Text; using SqlSugar; namespace JiepeiWMS.Model.Models { /// ///材料表 /// [SugarTable( "WMMaterialCost", "Jiepei_WMS")] public class WMMaterialCost { public WMMaterialCost() { } /// /// Id主键 /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Id { get; set; } /// /// 部门ID /// public int DepId { get; set; } /// /// 物料ID /// public int ProductId { get; set; } /// /// 年 /// public int Years { get; set; } /// /// 月 /// public int Months { get; set; } /// /// 期初成本 /// public decimal? PeriodStartCost { get; set; } /// /// 台账成本 /// public decimal? LedgerCost { get; set; } /// /// 期末成本 /// public decimal? PeriodEndCost { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 分类Id /// public int? ClassId { get; set; } } }