schangxiang@126.com
2024-09-04 4c0f8b9123f9627be73fff05c2062cffeee42cb7
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
43
44
45
46
47
48
49
50
51
52
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWare.Wms.Core
{
    [Table("ShiftInfo")]
    [Comment("班组织信息")]
    public class ShiftInfo : DEntityBase
    {
        /// <summary>
        /// 班次名称
        /// </summary>
        [Comment("班次名称")]
        [Required, MaxLength(50)]
        public string ShiftName { get; set; }
 
        /// <summary>
        /// 班次开始时间
        /// </summary>
        [Comment("班次开始时间")]
        [Required, MaxLength(50)]
        public string ShiftStartTime { get; set; }
 
        /// <summary>
        /// 班次结束时间
        /// </summary>
        [Comment("班次结束时间")]
        [Required, MaxLength(50)]
        public string ShiftEndTime { get; set; }
 
        /// <summary>
        /// 是否隔日
        /// </summary>
        [Comment("是否隔日")]
        [Required]
        public bool IsNextDay { get; set; }
 
        /// <summary>
        /// 班次描述
        /// </summary>
        [Comment("班次描述")]
        [MaxLength(900)]
        public string ShiftRemark { get; set; }
 
    }
}