using ZhonTai.Admin.Core.Dto;
namespace NPP.SmartSchedue.Api.Contracts.Services.Work.Input;
///
/// 工序组分页查询输入
///
public class ProcessGroupGetPageInput : PageInput
{
///
/// 工序组名称
///
public string GroupName { get; set; }
///
/// 项目类别
///
public string ProjectCategory { get; set; }
///
/// 是否启用
///
public bool? IsEnabled { get; set; }
}