using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { /// /// 工厂成本核算类型 /// public enum EnumProCostType { /// /// 生产面积 /// [Note("生产面积")] FinishProduct = 1, /// /// 材料成本 /// [Note("材料成本")] MaterialCost = 2, /// /// 人工成本 /// [Note("人工成本")] LaborCost = 3, /// /// 设备折旧 /// [Note("设备折旧")] EquipmentDepreciation = 4, /// /// 水电费 /// [Note("水电费")] Utilities = 5, /// /// 设备维修费 /// [Note("设备维修费")] EquipmentMaintenance=6, /// /// 易耗品成本 /// [Note("易耗品成本")] ConsumableCost = 7, /// /// 外发加工成本 /// [Note("外发加工成本")] ProcessCost = 8, /// /// 场地成本 /// [Note("场地成本")] SiteCost = 9, } }