using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace Business.Dto
{
///
/// 产线工作段Dto
///
public class LineWorkPointDto
{
///
/// 层级
///
public int Level { get; set; }
///
/// 产线
///
public string Line { get; set; }
///
/// 周几
///
public int WeekDay { get; set; }
///
/// 开始时间点
///
public DateTime StartPoint { get; set; }
///
/// 结束时间点
///
public DateTime EndPoint { get; set; }
///
/// 当前层级工作时长(分钟)
///
public decimal WorkMinutes { get; set; }
}
}