namespace TaskManager.Entity.Entitys { /// /// 工艺装备 /// public class SUPPLIER_PRO_PROCESS_EQUIPMENT : BaseEntity { /// /// 供应商代码 /// public string SupplierCode { get; set; } /// /// 供应商名称 /// public string SupplierName { get; set; } /// /// 奇瑞零件号 /// public string CheryProductNo { get; set; } /// /// 奇瑞零件名称 /// public string CheryProductName { get; set; } /// /// 供应商总成零件号 /// public string VendorProductNo { get; set; } /// /// 供应商总成零件名称 /// public string VendorProductName { get; set; } /// /// 工艺装备类型分类(1模具;2检具;3夹具) /// public decimal DeviceType { get; set; } /// /// 工艺装备编码 /// public string DeviceCode { get; set; } /// /// 工艺装备名称 /// public string DeviceName { get; set; } /// /// 生产厂家 /// public string Manufacturer { get; set; } /// /// 工艺装备型号 /// public string ModelNumber { get; set; } /// /// 工艺装备序列号 /// public string SerialNumber { get; set; } /// /// 工艺装备制造日期,格式(yyyy-MM-dd) /// public string ProductionDate { get; set; } /// /// 主要材质 /// public string Material { get; set; } /// /// 当前存放地点 /// public string CurrentLocation { get; set; } /// /// 工艺装备状态 /// public string DeviceStatus { get; set; } /// /// 穴腔数量 /// public decimal CavityCount { get; set; } /// /// 模具尺寸规格 /// public string MoldSize { get; set; } /// /// 设计寿命单位 /// public string DesignLifeUnits { get; set; } /// /// 设计寿命 /// public string DesignLifeValue { get; set; } /// /// 当前剩余寿命, /// public string CurrentUsageCount { get; set; } /// /// 模具大修次数 /// public decimal OverhaulCount { get; set; } /// /// 图纸编号描述 /// public string CoolingChannelLayout { get; set; } /// /// 检测精度 /// public string DetectionAccuracy { get; set; } /// /// 最近校准日期,格式(yyyy-MM-ddHH:mm:ss) /// public string CalibrationDate { get; set; } /// /// 校准到期天数 /// public string CalibrationDueDays { get; set; } /// /// 允许误差范围 /// public string ToleranceRange { get; set; } /// /// 磨损阈值 /// public string WearThreshold { get; set; } /// /// 检测范围 /// public string DetectionRange { get; set; } /// /// 检测单位 /// public string UnitType { get; set; } } }