12 lines
267 B
C#
12 lines
267 B
C#
namespace NPP.SmartSchedue.Api.Contracts.Services.Personnel.Input;
|
|
|
|
/// <summary>
|
|
/// 更新资质
|
|
/// </summary>
|
|
public class QualificationUpdateInput : QualificationAddInput
|
|
{
|
|
/// <summary>
|
|
/// 资质ID
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
} |