Files
Web_Faces_Prod/Face.Domain.ViewModels/PPlan/VM_TBL_PPlanInternalDetails.cs
2025-11-25 17:41:57 +08:00

111 lines
2.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Face.Domain.ViewModels
{
public class VM_TBL_PPlanInternalDetails
{
/// <summary>
/// 内部单ID
/// </summary>
public int ID { get; set; }
/// <summary>
/// 订单号
/// </summary>
public string OrderNo { get; set; }
/// <summary>
/// 内部单号
/// </summary>
public string InternalNo { get; set; }
/// <summary>
/// 机型
/// </summary>
public string ProjectName { get; set; }
public int ProjectID { get; set; }
/// <summary>
/// 客户
/// </summary>
public string CustomerAbbr { get; set; }
/// <summary>
/// 交期时间
/// </summary>
public System.DateTime DeliveryTime { get; set; }
public string DeliveryTimeStr { get; set; }
public string StationText { get; set; }
///// <summary>
///// 开始序号
///// </summary>
//public string Sn_Start { get; set; }
///// <summary>
///// 结束序号
///// </summary>
//public string Sn_End { get; set; }
/// <summary>
/// 列表
/// </summary>
public List<VM_TBL_PPlan> PPlanList { get; set; }
public List<Dictionary<string, object>> rows { get; set; }
public VM_TBL_PPlanInternalDetails()
{
PPlanList = new List<VM_TBL_PPlan>();
}
}
public class VM_TBL_PPlan
{
/// <summary>
/// 计划ID
/// </summary>
public int ID { get; set; }
/// <summary>
/// 实际产量
/// </summary>
public int ActualOutput { get; set; }
/// <summary>
/// 目标产量
/// </summary>
public int ObjectiveYield { get; set; }
/// <summary>
/// 累计目标产量
/// </summary>
public int ObjectiveYieldTotal { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 生产时间
/// </summary>
public System.DateTime ProductionTime { get; set; }
public int ProductionLineID { get; set; }
public int StationID { get; set; }
}
}