using Business.Model; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Bussiness.Model.Tech { /// /// 工位表(工作中心) /// public class mes_workshop : BaseEntity { /// /// 工位表主键 /// [Key] [Description("工位表主键")] public long workshop_id { get; set; } /// /// 工位名称 /// [StringLength(100)] [Description("工位名称")] public string? name { get; set; } /// /// 组合工位ids /// [StringLength(2000)] [Description("组合工位ids")] public string? subids { get; set; } /// /// 坐标 /// [StringLength(100)] [Description("坐标")] public string? geoinfo { get; set; } /// /// 楼栋 /// [StringLength(100)] [Description("楼栋")] public string? building { get; set; } /// /// 楼层 /// [StringLength(100)] [Description("楼层")] public string? floor { get; set; } /// /// 区域 /// [StringLength(100)] [Description("区域")] public string? zone { get; set; } /// /// 工作日历id /// [Description("工作日历id")] public long? work_calendar_id { get; set; } } }