安全会议,教育培训接口
This commit is contained in:
@@ -86,10 +86,10 @@ namespace FineUIPro.Web.common
|
||||
workSafetyDay10 = ((workSafetyDays % 100) / 10),
|
||||
workSafetyDay100 = ((workSafetyDays % 1000) / 100),
|
||||
workSafetyDay1000 = ((workSafetyDays % 10000) / 1000),
|
||||
projectsUnderConstruction = hsseData.BeUnderConstructionNum ?? 0,
|
||||
shutdownProject = hsseData.ShutdownNum ?? 0,
|
||||
participateInNum = hsseData.JoinConstructionPersonNum ?? 0,
|
||||
dangerousProject = hsseData.MajorProjectsUnderConstructionNum ?? 0
|
||||
projectsUnderConstruction = hsseData != null ? hsseData.BeUnderConstructionNum ?? 0 : 0,
|
||||
shutdownProject = hsseData != null ? hsseData.ShutdownNum ?? 0 : 0,
|
||||
participateInNum = hsseData != null ? hsseData.JoinConstructionPersonNum ?? 0 : 0,
|
||||
dangerousProject = hsseData != null ? hsseData.MajorProjectsUnderConstructionNum ?? 0 : 0,
|
||||
},
|
||||
//项目地图数据
|
||||
chinaData = projects.Select(p => new
|
||||
|
||||
Reference in New Issue
Block a user