using iWare.Wms.Core.Util.LowCode.Dto;
using System;
namespace iWare.Wms.Application
{
///
/// 班组信息输出参数
///
public class ShiftInfoDto
{
///
/// 班次名称
///
public string ShiftName { get; set; }
///
/// 班次开始时间
///
public string ShiftStartTime { get; set; }
///
/// 班次结束时间
///
public string ShiftEndTime { get; set; }
///
/// 是否隔日
///
public bool IsNextDay { get; set; }
///
/// 班次描述
///
public string ShiftRemark { get; set; }
///
/// Id主键
///
public long Id { get; set; }
}
}