using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Face.Domain { /// /// 产值查询实体 /// public class OutputValueModel { public int ID { get; set; } /// /// 订单ID /// public int OrderID { get; set; } /// /// 产线ID /// public int ProductionLineID { get; set; } /// /// 产线名称 /// public string ProductionLineName { get; set; } /// /// 生产时间 /// public string ProductionTime { get; set; } /// /// 已完成产量 /// public int ActualOutput { get; set; } /// /// 价格 /// public float Price { get; set; } /// /// 价格 /// public float OutputPrice { get; set; } } }