14 lines
314 B
C#
14 lines
314 B
C#
using ZhonTai.Admin.Core.Dto;
|
|
|
|
namespace NPP.SmartSchedue.Api.Contracts.Services.Personnel.Input;
|
|
|
|
/// <summary>
|
|
/// 人员工作限制分页查询输入
|
|
/// </summary>
|
|
public class PersonnelWorkLimitGetPageInput
|
|
{
|
|
/// <summary>
|
|
/// 人员ID
|
|
/// </summary>
|
|
public long? PersonnelId { get; set; }
|
|
} |