using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity.Entity { /// /// YW_DevicePacking设备包装数量表 /// [Table("YW_DevicePacking")] public class YW_DevicePacking { /// /// 主键ID /// [Column("ID", IsPrimaryKey = true)] public string Id { set; get; } = string.Empty; /// /// 包装表id /// public string PackingId { set; get; } = string.Empty; /// /// 设备id /// public string DeviceId { set; get; } = string.Empty; /// /// 容量 /// public int Capacity { set; get; } = 1; /// /// 库存 /// public int Stock { set; get; } /// /// 是否删除(0有效1删除) /// public int IsDelete { set; get; } /// /// 创建时间 /// public DateTime CreateDT { set; get; } = DateTime.Now; /// /// 创建人 /// public string CreateBY { set; get; } = string.Empty; /// /// 修改时间 /// public DateTime ModifyDT { set; get; } = DateTime.Now; /// /// 修改人 /// public string ModifyBY { set; get; } = string.Empty; } }