using Business.Models; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Globalization; using System.Linq; using System.Net.NetworkInformation; using System.Text; using System.Threading.Tasks; namespace Bussiness.Model.SystemData { /// /// 班次表 /// public class sys_shiftslice: BaseEntity { /// /// 主键id /// [Key] public long slice_id { get; set; } /// /// 班次编码 /// [StringLength(50)] public string slice_no { get; set; } /// /// 班次名称 /// [StringLength(255)] public string slice_name { get; set; } /// /// 起始工作时间 /// public DateTime slice_start_time { get; set; } /// /// 结束工作时间 /// public DateTime slice_end_time { get; set; } /// /// 是否跨天 1是 0否 /// public bool is_across { get; set; } /// /// 备注 /// [StringLength(255)] public long remark { get; set; } /// /// 有效时长 /// public int validate_hours { get; set; } /// /// 工作时长 /// public int work_hours { get; set; } /// /// 数据状态标识 1启用 0停用 /// public bool state { get; set; } } }