using System; namespace Business.Supply.Entity { public class SupplyEty { //ID public string Id { get; set; } //部门ID public string DepId { get; set; } //Num public int Num { get; set; } //名称 public string Name { get; set; } //数量 public decimal Quantity { get; set; } //时间 public DateTime Time { get; set; } //备注 public string Remark { get; set; } //删除标记 public bool DelFlag { get; set; } //添加人ID public string AddUserId { get; set; } //添加时间 public DateTime AddTime { get; set; } //修改人ID public string UpdateUserId { get; set; } //最后修改时间 public DateTime LastTime { get; set; } } }