Asoka.Wang 21f044712c 1
2025-08-27 18:39:19 +08:00

19 lines
400 B
C#

using ZhonTai.Admin.Core.Dto;
namespace NPP.SmartSchedue.Api.Contracts.Services.Time.Input;
/// <summary>
/// 生产班次分页查询输入
/// </summary>
public class ShiftGetPageInput : PageInput
{
/// <summary>
/// 班次名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 是否启用
/// </summary>
public bool? IsEnabled { get; set; }
}