using SqlSugar; using System; namespace DeviceRepair.Models.SFC { /// /// /// [SugarTable("ResourceAllocations")] public class ResourceAllocationsInfo { /// /// /// [SugarColumn(ColumnName = "GUID", IsPrimaryKey = true)] public Guid Guid { get; set; } /// /// 产品号 /// [SugarColumn(ColumnName = "Product")] public string Product { get; set; } /// /// 工艺版本 /// [SugarColumn(ColumnName = "Technology")] public string Technology { get; set; } /// /// 岗位 /// [SugarColumn(ColumnName = "Staff")] public Guid Staff { get; set; } /// /// /// [SugarColumn(ColumnName = "CreateBy")] public string CreateBy { get; set; } /// /// /// [SugarColumn(ColumnName = "CreateOn")] public DateTime? CreateOn { get; set; } } }