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
{
///
/// 内部单ID
///
public int ID { get; set; }
///
/// 订单号
///
public string OrderNo { get; set; }
///
/// 内部单号
///
public string InternalNo { get; set; }
///
/// 机型
///
public string ProjectName { get; set; }
public int ProjectID { get; set; }
///
/// 客户
///
public string CustomerAbbr { get; set; }
///
/// 交期时间
///
public System.DateTime DeliveryTime { get; set; }
public string DeliveryTimeStr { get; set; }
public string StationText { get; set; }
/////
///// 开始序号
/////
//public string Sn_Start { get; set; }
/////
///// 结束序号
/////
//public string Sn_End { get; set; }
///
/// 列表
///
public List PPlanList { get; set; }
public List> rows { get; set; }
public VM_TBL_PPlanInternalDetails()
{
PPlanList = new List();
}
}
public class VM_TBL_PPlan
{
///
/// 计划ID
///
public int ID { get; set; }
///
/// 实际产量
///
public int ActualOutput { get; set; }
///
/// 目标产量
///
public int ObjectiveYield { get; set; }
///
/// 累计目标产量
///
public int ObjectiveYieldTotal { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 生产时间
///
public System.DateTime ProductionTime { get; set; }
public int ProductionLineID { get; set; }
public int StationID { get; set; }
}
}