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_Packing包装表
///
[Table("YW_Packing")]
public class YW_Packing
{
///
/// 主键ID
///
[Column("id", IsPrimaryKey = true)]
public string Id { set; get; } = string.Empty;
///
/// 包装名称
///
public string Name { set; get; } = string.Empty;
///
/// 包装图片
///
public string Img { set; get; } = string.Empty;
///
/// 最小可装个数
///
public int Min { set; get; } = 1;
///
/// 最大可装个数
///
public int Max { set; get; } = 1;
///
/// 是否删除(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;
}
}