2025年度浙江省建筑施工安全生产标准化优良工地(宁波地区)水平认定项目汇总表(按总分从高到低排序)
This commit is contained in:
@@ -15,42 +15,49 @@ namespace Vote.Services.Dto
|
||||
/// 项目类型
|
||||
/// </summary>
|
||||
public int? type { get; set; }
|
||||
|
||||
public int? is_no_inspection { get; set; }
|
||||
}
|
||||
|
||||
public class ProjectsOutput
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目序号
|
||||
/// </summary>
|
||||
public int serial_number { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 工程名称
|
||||
/// </summary>
|
||||
public string name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目类型
|
||||
/// </summary>
|
||||
public EnumProjectType type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目类型
|
||||
/// </summary>
|
||||
public string type_title
|
||||
{
|
||||
get
|
||||
{
|
||||
return type.GetEnumDescription();
|
||||
}
|
||||
get { return type.GetEnumDescription(); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public bool vote { get; set; } = false;
|
||||
|
||||
public string remark { get; set; }
|
||||
public int is_no_inspection { get; set; }
|
||||
}
|
||||
|
||||
public class CheckSubmitCodeInput
|
||||
{
|
||||
/// <summary>
|
||||
@@ -59,6 +66,7 @@ namespace Vote.Services.Dto
|
||||
[Required]
|
||||
public string code { get; set; }
|
||||
}
|
||||
|
||||
public class SubmitInput
|
||||
{
|
||||
/// <summary>
|
||||
@@ -66,8 +74,8 @@ namespace Vote.Services.Dto
|
||||
/// </summary>
|
||||
[Required]
|
||||
public string code { get; set; }
|
||||
[Required]
|
||||
public List<ProjectsOutput> projects { get; set; }
|
||||
|
||||
[Required] public List<ProjectsOutput> projects { get; set; }
|
||||
}
|
||||
|
||||
public class ProjectsList2Output
|
||||
@@ -76,10 +84,12 @@ namespace Vote.Services.Dto
|
||||
///
|
||||
/// </summary>
|
||||
public string id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目序号
|
||||
/// </summary>
|
||||
public int serial_number { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 工程名称
|
||||
/// </summary>
|
||||
@@ -95,29 +105,29 @@ namespace Vote.Services.Dto
|
||||
{
|
||||
get
|
||||
{
|
||||
return yes_count > 15;
|
||||
return yes_count >= 11;
|
||||
// return (yes_count / (yes_count + no_count)) >= (2.0 / 3.0);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 项目类型
|
||||
/// </summary>
|
||||
public EnumProjectType type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目类型
|
||||
/// </summary>
|
||||
public string type_title
|
||||
{
|
||||
get
|
||||
{
|
||||
return type.GetEnumDescription();
|
||||
}
|
||||
get { return type.GetEnumDescription(); }
|
||||
}
|
||||
|
||||
public class AddExpertInput
|
||||
{
|
||||
[Required]
|
||||
public int expertnum { get; set; }
|
||||
[Required] public int expertnum { get; set; }
|
||||
}
|
||||
|
||||
public int is_no_inspection { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user