222
schangxiang@126.com
2025-09-26 2b05362eba2f989b7857349cc9a3a1c12f8181b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using iWare.Wms.Core.Util.LowCode.Dto;
using System;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 班组信息输出参数
    /// </summary>
    public class ShiftInfoDto
    {
        /// <summary>
        /// 班次名称
        /// </summary>
        public string ShiftName { get; set; }
        
        /// <summary>
        /// 班次开始时间
        /// </summary>
        public string ShiftStartTime { get; set; }
        
        /// <summary>
        /// 班次结束时间
        /// </summary>
        public string ShiftEndTime { get; set; }
        
        /// <summary>
        /// 是否隔日
        /// </summary>
        public bool IsNextDay { get; set; }
        
        /// <summary>
        /// 班次描述
        /// </summary>
        public string ShiftRemark { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        
    }
}