using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TaskManager.Entity { /// /// 供应商基础信息 /// public class SupplierInfo { /// /// 供应商代码 /// public string SupplierCode { get; set; } /// /// 供应商名称 /// public string SupplierName { get; set; } /// /// 工厂代码 /// public string PlantId { get; set; } /// /// 工厂名称 /// public string PlantName { get; set; } /// /// 车间代码 /// public string WorkshopId { get; set; } /// /// 车间名称 /// public string WorkshopName { get; set; } /// /// 产线代码 /// public string ProductionLineId { get; set; } /// /// 产线名称 /// public string ProductionLineName { get; set; } /// /// 工位代码 /// public string StationId { get; set; } /// /// 工位名称 /// public string StationName { get; set; } /// /// 是否关键工位(Y/N) /// public bool KeyStation { get; set; } /// /// 供应商修改时间,格式(yyyy-MM-dd HH:mm:ss) /// public DateTime DataUpdateTime { get; set; } /// /// 产线顺序 /// public int ProductionLineOrder { get; set; } /// /// 工位顺序 /// public int StationOrder { get; set; } /// /// 供应商总成零件号 /// public string VendorProductNo { get; set; } /// /// 供应商总成零件名称 /// public string VendorProductName { get; set; } /// /// 奇瑞零件号 /// public string CheryProductNo { get; set; } /// /// 奇瑞零件名称 /// public string CheryProductName { get; set; } } }