初始化项目
This commit is contained in:
52
AUTS.Domain/Application/OutputValue.cs
Normal file
52
AUTS.Domain/Application/OutputValue.cs
Normal file
@@ -0,0 +1,52 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AUTS.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// 产值查询实体
|
||||
/// </summary>
|
||||
public class OutputValueModel
|
||||
{
|
||||
public int ID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单ID
|
||||
/// </summary>
|
||||
public int OrderID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产线ID
|
||||
/// </summary>
|
||||
public int ProductionLineID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产线名称
|
||||
/// </summary>
|
||||
public string ProductionLineName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 生产时间
|
||||
/// </summary>
|
||||
public string ProductionTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 已完成产量
|
||||
/// </summary>
|
||||
public int ActualOutput { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 价格
|
||||
/// </summary>
|
||||
public float Price { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 价格
|
||||
/// </summary>
|
||||
public float OutputPrice { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user