using System; using FreeSql.DataAnnotations; using ZhonTai.Admin.Core.Entities; using NPP.SmartSchedue.Api.Contracts.Core.Consts; namespace NPP.SmartSchedue.Api.Contracts.Domain.Work; /// /// 工序组实体 /// [Table(Name = DbConsts.TableNamePrefix + "process_group")] public partial class ProcessGroupEntity : EntityTenant { /// /// 工序组名称 /// [Column(StringLength = 100)] public string GroupName { get; set; } /// /// 项目类别 /// [Column(StringLength = 50)] public string ProjectCategory { get; set; } /// /// 工序组描述 /// [Column(StringLength = 500)] public string Description { get; set; } /// /// 是否启用 /// public bool IsEnabled { get; set; } = true; /// /// 工序组优先级 /// public int Priority { get; set; } = 1; }