using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tnb.ProductionMgr.Entitys.Entity;
namespace Tnb.ProductionMgr.Entitys.Dto
{
///
/// 设备列表输出参数
///
public class EquipmentListOutput //: EqpEquipment 不能直接继承实体类
{
///
/// 任务单数量
///
public int task_list_qty { get; set; }
///
/// 吨位
///
public double tonnage { get; set; }
///
/// 最早开始时间
///
public DateTime? first_date { get; set; }
}
}