using iWare.Wms.Core.Util.LowCode.Dto;
using System;
namespace iWare.Wms.Application
{
///
/// 生产计划表输出参数
///
public class ProductionPlanInfoOutput
{
///
/// 计划类型(1:班组计划 2:月份计划)
///
public string PlanType { get; set; }
///
/// 计划时间
///
public DateTime PlanTime { get; set; }
///
/// 工件下线时间处理
///
public string PlanTimeHand
{
get
{
return PlanTime.ToString("yyyy-MM");
//if (PlanTime.HasValue)
//{
//}
//else
//{
// return "";
//}
}
}
///
/// 工件下线时间处理
///
public string PlanTimeDayHand
{
get
{
return PlanTime.ToString("yyyy-MM-dd");
//if (PlanTime.HasValue)
//{
//}
//else
//{
// return "";
//}
}
}
///
/// 班组类型(白班,晚班)
///
public string TeamType { get; set; }
///
/// 计划生成数量
///
public int PlanProductionNum { get; set; }
///
/// 备注
///
public string Remarks { get; set; }
///
/// Id主键
///
public long Id { get; set; }
}
}