using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IWareDataAccess.Entity.Base { public class ProductionLineWebEntity { public int? id { get; set; } public string productionCode { get; set; } public string productionName { get; set; } public int? enable { get; set; } public int? isDestination { get; set; } public ProductionLineWebEntity() { enable = 1; } } }