SGGL_SGY/SGGL/Model/ZHGL/DataSync/HiddenRectificationOutput.cs

26 lines
657 B
C#

namespace Model
{
public class HiddenRectificationOutput :BaseEntities
{/// <summary>
/// 项目简称
/// </summary>
public string ProjectShortName { get; set; }
/// <summary>
/// 问题数量
/// </summary>
public int ProNum { get; set; }
/// <summary>
/// 整改数量
/// </summary>
public int RecNum { get; set; }
/// <summary>
/// 未整改数量
/// </summary>
public int NoRecNum { get; set; }
/// <summary>
/// 整改率
/// </summary>
public string RecRate { get; set; }
}
}