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_shift: BaseEntity { /// /// 主键id /// [Key] public long shift_id { get; set; } /// /// 班制编码 /// [StringLength(50)] public string shift_no { get; set; } /// /// 班制名称 /// [StringLength(255)] public string shift_name { get; set; } /// /// 是否跨天 1是 0否 /// public bool is_across { get; set; } /// /// 备注 /// [StringLength(255)] public long remark { get; set; } /// /// 有效时长 /// public int validate_hours { get; set; } /// /// 数据状态标识 1启用 0停用 /// public bool state { get; set; } } }