namespace NPP.SmartSchedue.Api.Contracts.Services.Work.Input;
///
/// 添加工序组
///
public class ProcessGroupAddInput
{
///
/// 工序组名称
///
public string GroupName { get; set; }
///
/// 项目类别
///
public string ProjectCategory { get; set; }
///
/// 工序组描述
///
public string Description { get; set; }
///
/// 工序组优先级
///
public int Priority { get; set; } = 1;
}