namespace NPP.SmartSchedue.Api.Contracts.Services.Personnel.Output;
///
/// 资质分页输出
///
public class QualificationGetPageOutput
{
///
/// 资质ID
///
public long Id { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 等级
///
public string Level { get; set; }
///
/// 描述
///
public string Description { get; set; }
}