using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.StructuredDB.Production { /// /// ResourceOccupancyTime /// public class ResourceOccupancyTime { /// /// 主键ID /// [Comment("主键")] [Key] public int RecID { get; set; } /// /// 工厂Num /// public string Domain { get; set; } /// /// 无 /// public string Site { get; set; } /// /// 无 /// public long BusinessID { get; set; } /// /// 类型 /// public string ResourceType { get; set; } /// /// 产线 /// public string Resource { get; set; } /// /// 开始时间 /// public DateTime? StartTime { get; set; } /// /// 结束时间 /// public DateTime? EndTime { get; set; } /// /// 描述 /// public string Descr { get; set; } /// /// 无 /// public bool IsRest { get; set; } /// /// 是否有效 /// public bool IsActive { get; set; } /// /// 是否确认 /// public bool IsConfirm { get; set; } /// /// 无 /// public bool IsChanged { get; set; } /// /// 有效工作时长 /// public string Ufld1 { get; set; } /// /// 休息时长 /// public string Ufld2 { get; set; } /// /// 创建账户 /// public string CreateUser { get; set; } /// /// 修改账户 /// public string UpdateUser { get; set; } /// /// 创建日期 /// public DateTime? CreateTime { get; set; } /// /// 修改日期 /// public DateTime? UpdateTime { get; set; } } }