diff --git a/SGGL/BLL/JDGL/Check/WeekPlanService.cs b/SGGL/BLL/JDGL/Check/WeekPlanService.cs
index 12deb96d..1c4ecbc7 100644
--- a/SGGL/BLL/JDGL/Check/WeekPlanService.cs
+++ b/SGGL/BLL/JDGL/Check/WeekPlanService.cs
@@ -1,8 +1,7 @@
-using System;
+using Model;
+using System;
using System.Collections.Generic;
using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
namespace BLL
{
@@ -20,7 +19,7 @@ namespace BLL
///
public static Model.JDGL_WeekPlan GetWeekPlanById(string WeekPlanId)
{
- return Funs.DB.JDGL_WeekPlan.FirstOrDefault(e => e.WeekPlanId == WeekPlanId);
+ return db.JDGL_WeekPlan.FirstOrDefault(e => e.WeekPlanId == WeekPlanId);
}
///
@@ -30,7 +29,7 @@ namespace BLL
///
public static List GetWeekPlansByWeeks(string projectId, string weekNo)
{
- return (from x in Funs.DB.JDGL_WeekPlan where x.ProjectId == projectId && x.WeekNo == weekNo select x).ToList();
+ return (from x in db.JDGL_WeekPlan where x.ProjectId == projectId && x.WeekNo == weekNo select x).ToList();
}
///
@@ -39,7 +38,6 @@ namespace BLL
///
public static void AddWeekPlan(Model.JDGL_WeekPlan WeekPlan)
{
- Model.SGGLDB db = Funs.DB;
Model.JDGL_WeekPlan newWeekPlan = new Model.JDGL_WeekPlan
{
WeekPlanId = WeekPlan.WeekPlanId,
@@ -69,7 +67,6 @@ namespace BLL
///
public static void UpdateWeekPlan(Model.JDGL_WeekPlan WeekPlan)
{
- Model.SGGLDB db = Funs.DB;
Model.JDGL_WeekPlan newWeekPlan = db.JDGL_WeekPlan.FirstOrDefault(e => e.WeekPlanId == WeekPlan.WeekPlanId);
if (newWeekPlan != null)
{
@@ -95,7 +92,6 @@ namespace BLL
///
public static void DeleteWeekPlanByWeekPlanId(string WeekPlanId)
{
- Model.SGGLDB db = Funs.DB;
var q = (from x in db.JDGL_WeekPlan where x.WeekPlanId == WeekPlanId select x).FirstOrDefault();
if (q != null)
{
@@ -104,13 +100,24 @@ namespace BLL
}
}
+ ///
+ /// 根据当前时间获取上一个周计划
+ ///
+ ///
+ ///
+ public static JDGL_WeekPlan GetLastWeekPlan(string projectId)
+ {
+ return (from x in db.JDGL_WeekPlan where x.ProjectId == projectId && DateTime.Now > ((DateTime)x.EndDate).AddDays(1) orderby x.EndDate select x).FirstOrDefault();
+ }
+
+
///
/// 根据主键删除周计划情况
///
- ///
+ ///
+ ///
public static void DeleteAllWeekPlan(string projectId, string weekNo)
{
- Model.SGGLDB db = Funs.DB;
var q = from x in db.JDGL_WeekPlan where x.ProjectId == projectId && x.WeekNo == weekNo select x;
if (q != null)
{
@@ -118,5 +125,17 @@ namespace BLL
db.SubmitChanges();
}
}
+
+
+ ///
+ /// 获取周计划下责任单位Id
+ ///
+ ///
+ ///
+ public static List GetWeekPlanUnitIdListByProjectIdWeekNo(string projectId)
+ {
+ var lstUnit = (from x in db.JDGL_WeekPlan where x.ProjectId == projectId orderby x.UnitId select x.UnitId).Distinct().ToList();
+ return lstUnit;
+ }
}
}
diff --git a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.en-US.resx b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.en-US.resx
index 2fef81b0..4a3f01b7 100644
--- a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.en-US.resx
+++ b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.en-US.resx
@@ -1340,4 +1340,12 @@
Up to standard
合格
+
+ Completion status of monthly plan
+ 月计划完成情况
+
+
+ Completion status of weekly plan
+ 周计划完成情况
+
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.resx b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.resx
index dc4f33c7..610de8ee 100644
--- a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.resx
+++ b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.resx
@@ -1185,4 +1185,10 @@
合格
+
+ 月计划完成情况
+
+
+ 周计划完成情况
+
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.zh-CN.resx b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.zh-CN.resx
index 1eaf9d2d..95de4d0f 100644
--- a/SGGL/FineUIPro.Web/App_GlobalResources/Lan.zh-CN.resx
+++ b/SGGL/FineUIPro.Web/App_GlobalResources/Lan.zh-CN.resx
@@ -1185,4 +1185,10 @@
合格
+
+ 月计划完成情况
+
+
+ 周计划完成情况
+
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/App_GlobalResources/Lan1.designer.cs b/SGGL/FineUIPro.Web/App_GlobalResources/Lan1.designer.cs
index 0de2311d..9ff051a2 100644
--- a/SGGL/FineUIPro.Web/App_GlobalResources/Lan1.designer.cs
+++ b/SGGL/FineUIPro.Web/App_GlobalResources/Lan1.designer.cs
@@ -13,13 +13,13 @@ namespace Resources {
///
- /// 强类型资源类,用于查找本地化字符串等。
+ /// 一个强类型的资源类,用于查找本地化的字符串等。
///
// 此类是由 StronglyTypedResourceBuilder
// 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
- // 若要添加或删除成员,请编辑 .ResX 文件,然后重新运行 ResGen
+ // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
// (以 /str 作为命令选项),或重新生成 Visual Studio 项目。
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Web.Application.StronglyTypedResourceProxyBuilder", "15.0.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Web.Application.StronglyTypedResourceProxyBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Lan {
@@ -33,7 +33,7 @@ namespace Resources {
}
///
- /// 返回此类使用的缓存 ResourceManager 实例。
+ /// 返回此类使用的缓存的 ResourceManager 实例。
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
@@ -47,8 +47,8 @@ namespace Resources {
}
///
- /// 覆盖当前线程的 CurrentUICulture 属性
- /// 使用此强类型的资源类的资源查找。
+ /// 重写当前线程的 CurrentUICulture 属性,对
+ /// 使用此强类型资源类的所有资源查找执行重写。
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
@@ -61,7 +61,7 @@ namespace Resources {
}
///
- /// 查找类似 事故事件数据 的本地化字符串。
+ /// 查找类似 事故事件数据 的本地化字符串。
///
internal static string Accident_event_data {
get {
@@ -70,7 +70,7 @@ namespace Resources {
}
///
- /// 查找类似 实际值 的本地化字符串。
+ /// 查找类似 实际值 的本地化字符串。
///
internal static string ActualValue {
get {
@@ -79,7 +79,7 @@ namespace Resources {
}
///
- /// 查找类似 全部 的本地化字符串。
+ /// 查找类似 全部 的本地化字符串。
///
internal static string All {
get {
@@ -88,7 +88,7 @@ namespace Resources {
}
///
- /// 查找类似 高处 的本地化字符串。
+ /// 查找类似 高处 的本地化字符串。
///
internal static string altitude {
get {
@@ -97,7 +97,7 @@ namespace Resources {
}
///
- /// 查找类似 审批完成 的本地化字符串。
+ /// 查找类似 审批完成 的本地化字符串。
///
internal static string ApprovalCompleted {
get {
@@ -106,7 +106,7 @@ namespace Resources {
}
///
- /// 查找类似 材料到货 的本地化字符串。
+ /// 查找类似 材料到货 的本地化字符串。
///
internal static string Arrival_of_materials {
get {
@@ -115,7 +115,7 @@ namespace Resources {
}
///
- /// 查找类似 竣工 的本地化字符串。
+ /// 查找类似 竣工 的本地化字符串。
///
internal static string BeCompleted {
get {
@@ -124,7 +124,7 @@ namespace Resources {
}
///
- /// 查找类似 大数据中心 的本地化字符串。
+ /// 查找类似 大数据中心 的本地化字符串。
///
internal static string BigDataCenter {
get {
@@ -133,7 +133,7 @@ namespace Resources {
}
///
- /// 查找类似 呼叫 的本地化字符串。
+ /// 查找类似 呼叫 的本地化字符串。
///
internal static string call {
get {
@@ -142,7 +142,7 @@ namespace Resources {
}
///
- /// 查找类似 证书预警 的本地化字符串。
+ /// 查找类似 证书预警 的本地化字符串。
///
internal static string CertificateWarning {
get {
@@ -151,7 +151,7 @@ namespace Resources {
}
///
- /// 查找类似 中国 的本地化字符串。
+ /// 查找类似 中国 的本地化字符串。
///
internal static string China {
get {
@@ -160,7 +160,7 @@ namespace Resources {
}
///
- /// 查找类似 中文 的本地化字符串。
+ /// 查找类似 中文 的本地化字符串。
///
internal static string Chinese {
get {
@@ -169,7 +169,7 @@ namespace Resources {
}
///
- /// 查找类似 土建基础交安 的本地化字符串。
+ /// 查找类似 土建基础交安 的本地化字符串。
///
internal static string CivilInfrastructure {
get {
@@ -178,7 +178,7 @@ namespace Resources {
}
///
- /// 查找类似 已完成 的本地化字符串。
+ /// 查找类似 已完成 的本地化字符串。
///
internal static string completed {
get {
@@ -187,7 +187,7 @@ namespace Resources {
}
///
- /// 查找类似 参建人数 的本地化字符串。
+ /// 查找类似 参建人数 的本地化字符串。
///
internal static string ConPersonCount {
get {
@@ -196,7 +196,7 @@ namespace Resources {
}
///
- /// 查找类似 施工方案审批量 的本地化字符串。
+ /// 查找类似 施工方案审批量 的本地化字符串。
///
internal static string ConPlanReviewBatch {
get {
@@ -205,7 +205,7 @@ namespace Resources {
}
///
- /// 查找类似 施工单位 的本地化字符串。
+ /// 查找类似 施工单位 的本地化字符串。
///
internal static string ConstructionUnit {
get {
@@ -214,7 +214,7 @@ namespace Resources {
}
///
- /// 查找类似 施工质量一次合格率 的本地化字符串。
+ /// 查找类似 施工质量一次合格率 的本地化字符串。
///
internal static string construction_quality_pass_rate {
get {
@@ -223,7 +223,7 @@ namespace Resources {
}
///
- /// 查找类似 合同到期时间 的本地化字符串。
+ /// 查找类似 合同到期时间 的本地化字符串。
///
internal static string ContractExpirationTime {
get {
@@ -232,7 +232,7 @@ namespace Resources {
}
///
- /// 查找类似 协调与沟通 的本地化字符串。
+ /// 查找类似 协调与沟通 的本地化字符串。
///
internal static string CoordinationCommunication {
get {
@@ -241,7 +241,7 @@ namespace Resources {
}
///
- /// 查找类似 累计实际值 的本地化字符串。
+ /// 查找类似 累计实际值 的本地化字符串。
///
internal static string Cumulative_actual_value {
get {
@@ -250,7 +250,7 @@ namespace Resources {
}
///
- /// 查找类似 累计计划值 的本地化字符串。
+ /// 查找类似 累计计划值 的本地化字符串。
///
internal static string Cumulative_planned_value {
get {
@@ -259,7 +259,7 @@ namespace Resources {
}
///
- /// 查找类似 当前现场人数 的本地化字符串。
+ /// 查找类似 当前现场人数 的本地化字符串。
///
internal static string CurrentPersonnel {
get {
@@ -268,7 +268,7 @@ namespace Resources {
}
///
- /// 查找类似 危大工程 的本地化字符串。
+ /// 查找类似 危大工程 的本地化字符串。
///
internal static string DangerousProject {
get {
@@ -277,7 +277,7 @@ namespace Resources {
}
///
- /// 查找类似 隐患总数 的本地化字符串。
+ /// 查找类似 隐患总数 的本地化字符串。
///
internal static string DangersCount {
get {
@@ -286,7 +286,7 @@ namespace Resources {
}
///
- /// 查找类似 到期应完成 的本地化字符串。
+ /// 查找类似 到期应完成 的本地化字符串。
///
internal static string Due_should_be_completed {
get {
@@ -295,7 +295,7 @@ namespace Resources {
}
///
- /// 查找类似 应急管理数据 的本地化字符串。
+ /// 查找类似 应急管理数据 的本地化字符串。
///
internal static string Emergency_management_data {
get {
@@ -304,7 +304,7 @@ namespace Resources {
}
///
- /// 查找类似 员工管理 的本地化字符串。
+ /// 查找类似 员工管理 的本地化字符串。
///
internal static string EmployeeManage {
get {
@@ -313,7 +313,7 @@ namespace Resources {
}
///
- /// 查找类似 英文 的本地化字符串。
+ /// 查找类似 英文 的本地化字符串。
///
internal static string English {
get {
@@ -322,7 +322,7 @@ namespace Resources {
}
///
- /// 查找类似 现场动态 的本地化字符串。
+ /// 查找类似 现场动态 的本地化字符串。
///
internal static string FieldDynamics {
get {
@@ -331,7 +331,7 @@ namespace Resources {
}
///
- /// 查找类似 首台设备到货 的本地化字符串。
+ /// 查找类似 首台设备到货 的本地化字符串。
///
internal static string FirstEquipmentArrived {
get {
@@ -340,7 +340,7 @@ namespace Resources {
}
///
- /// 查找类似 焊接一次合格率 的本地化字符串。
+ /// 查找类似 焊接一次合格率 的本地化字符串。
///
internal static string FistPassRateWelding {
get {
@@ -349,7 +349,7 @@ namespace Resources {
}
///
- /// 查找类似 全屏 的本地化字符串。
+ /// 查找类似 全屏 的本地化字符串。
///
internal static string FullScreen {
get {
@@ -358,7 +358,7 @@ namespace Resources {
}
///
- /// 查找类似 总承包商施工计划 的本地化字符串。
+ /// 查找类似 总承包商施工计划 的本地化字符串。
///
internal static string GeneralConPlan {
get {
@@ -367,7 +367,7 @@ namespace Resources {
}
///
- /// 查找类似 一般风险 的本地化字符串。
+ /// 查找类似 一般风险 的本地化字符串。
///
internal static string GeneralRisk {
get {
@@ -376,7 +376,7 @@ namespace Resources {
}
///
- /// 查找类似 一般事故 的本地化字符串。
+ /// 查找类似 一般事故 的本地化字符串。
///
internal static string General_accident {
get {
@@ -385,7 +385,7 @@ namespace Resources {
}
///
- /// 查找类似 较大风险 的本地化字符串。
+ /// 查找类似 较大风险 的本地化字符串。
///
internal static string GreaterRisk {
get {
@@ -394,7 +394,7 @@ namespace Resources {
}
///
- /// 查找类似 已到货 的本地化字符串。
+ /// 查找类似 已到货 的本地化字符串。
///
internal static string HaveArrived {
get {
@@ -403,7 +403,7 @@ namespace Resources {
}
///
- /// 查找类似 总部检查 的本地化字符串。
+ /// 查找类似 总部检查 的本地化字符串。
///
internal static string HeadquartersInspection {
get {
@@ -412,7 +412,7 @@ namespace Resources {
}
///
- /// 查找类似 帮助 的本地化字符串。
+ /// 查找类似 帮助 的本地化字符串。
///
internal static string help {
get {
@@ -421,7 +421,7 @@ namespace Resources {
}
///
- /// 查找类似 隐患排除治理数据 的本地化字符串。
+ /// 查找类似 隐患排除治理数据 的本地化字符串。
///
internal static string HiddenData {
get {
@@ -430,7 +430,7 @@ namespace Resources {
}
///
- /// 查找类似 高风险 的本地化字符串。
+ /// 查找类似 高风险 的本地化字符串。
///
internal static string High_risk {
get {
@@ -439,7 +439,7 @@ namespace Resources {
}
///
- /// 查找类似 首页 的本地化字符串。
+ /// 查找类似 首页 的本地化字符串。
///
internal static string HomePage {
get {
@@ -448,7 +448,7 @@ namespace Resources {
}
///
- /// 查找类似 安全管理 的本地化字符串。
+ /// 查找类似 安全管理 的本地化字符串。
///
internal static string HSEManage {
get {
@@ -457,7 +457,7 @@ namespace Resources {
}
///
- /// 查找类似 湿度 的本地化字符串。
+ /// 查找类似 湿度 的本地化字符串。
///
internal static string humidness {
get {
@@ -466,7 +466,7 @@ namespace Resources {
}
///
- /// 查找类似 综合管理 的本地化字符串。
+ /// 查找类似 综合管理 的本地化字符串。
///
internal static string IntegratedManage {
get {
@@ -475,7 +475,7 @@ namespace Resources {
}
///
- /// 查找类似 关键事项与协调沟通 的本地化字符串。
+ /// 查找类似 关键事项与协调沟通 的本地化字符串。
///
internal static string keyc {
get {
@@ -484,7 +484,7 @@ namespace Resources {
}
///
- /// 查找类似 关键事项总计 的本地化字符串。
+ /// 查找类似 关键事项总计 的本地化字符串。
///
internal static string Key_item_total {
get {
@@ -493,7 +493,7 @@ namespace Resources {
}
///
- /// 查找类似 在施危大工程数 的本地化字符串。
+ /// 查找类似 在施危大工程数 的本地化字符串。
///
internal static string LargeRisk {
get {
@@ -502,7 +502,7 @@ namespace Resources {
}
///
- /// 查找类似 级 的本地化字符串。
+ /// 查找类似 级 的本地化字符串。
///
internal static string Level {
get {
@@ -511,7 +511,7 @@ namespace Resources {
}
///
- /// 查找类似 吊装 的本地化字符串。
+ /// 查找类似 吊装 的本地化字符串。
///
internal static string lifting {
get {
@@ -520,7 +520,7 @@ namespace Resources {
}
///
- /// 查找类似 现场视频 的本地化字符串。
+ /// 查找类似 现场视频 的本地化字符串。
///
internal static string LiveVideo {
get {
@@ -529,7 +529,7 @@ namespace Resources {
}
///
- /// 查找类似 现场相册 的本地化字符串。
+ /// 查找类似 现场相册 的本地化字符串。
///
internal static string Live_photo_album {
get {
@@ -538,7 +538,7 @@ namespace Resources {
}
///
- /// 查找类似 动火 的本地化字符串。
+ /// 查找类似 动火 的本地化字符串。
///
internal static string LoseOneSTemper {
get {
@@ -547,7 +547,7 @@ namespace Resources {
}
///
- /// 查找类似 低风险 的本地化字符串。
+ /// 查找类似 低风险 的本地化字符串。
///
internal static string LowRisk {
get {
@@ -556,7 +556,7 @@ namespace Resources {
}
///
- /// 查找类似 已完成(个) 的本地化字符串。
+ /// 查找类似 已完成(个) 的本地化字符串。
///
internal static string mainI_completed {
get {
@@ -565,7 +565,7 @@ namespace Resources {
}
///
- /// 查找类似 竣工 的本地化字符串。
+ /// 查找类似 竣工 的本地化字符串。
///
internal static string mainI_completedProject {
get {
@@ -574,7 +574,7 @@ namespace Resources {
}
///
- /// 查找类似 当前现场人数 的本地化字符串。
+ /// 查找类似 当前现场人数 的本地化字符串。
///
internal static string mainI_currentOnSitePersonnel {
get {
@@ -583,7 +583,7 @@ namespace Resources {
}
///
- /// 查找类似 达因 的本地化字符串。
+ /// 查找类似 达因 的本地化字符串。
///
internal static string mainI_dyne {
get {
@@ -592,7 +592,7 @@ namespace Resources {
}
///
- /// 查找类似 首页 的本地化字符串。
+ /// 查找类似 首页 的本地化字符串。
///
internal static string mainI_home {
get {
@@ -601,7 +601,7 @@ namespace Resources {
}
///
- /// 查找类似 未完成(个) 的本地化字符串。
+ /// 查找类似 未完成(个) 的本地化字符串。
///
internal static string mainI_incomplete {
get {
@@ -610,7 +610,7 @@ namespace Resources {
}
///
- /// 查找类似 检测 的本地化字符串。
+ /// 查找类似 检测 的本地化字符串。
///
internal static string mainI_inspection {
get {
@@ -619,7 +619,7 @@ namespace Resources {
}
///
- /// 查找类似 监控 的本地化字符串。
+ /// 查找类似 监控 的本地化字符串。
///
internal static string mainI_monitoring {
get {
@@ -628,7 +628,7 @@ namespace Resources {
}
///
- /// 查找类似 焊口数 的本地化字符串。
+ /// 查找类似 焊口数 的本地化字符串。
///
internal static string mainI_numberOfWelds {
get {
@@ -637,7 +637,7 @@ namespace Resources {
}
///
- /// 查找类似 点口 的本地化字符串。
+ /// 查找类似 点口 的本地化字符串。
///
internal static string mainI_points {
get {
@@ -646,7 +646,7 @@ namespace Resources {
}
///
- /// 查找类似 进度 的本地化字符串。
+ /// 查找类似 进度 的本地化字符串。
///
internal static string mainI_progress {
get {
@@ -655,7 +655,7 @@ namespace Resources {
}
///
- /// 查找类似 进度统计 的本地化字符串。
+ /// 查找类似 进度统计 的本地化字符串。
///
internal static string mainI_progressStatistics {
get {
@@ -664,7 +664,7 @@ namespace Resources {
}
///
- /// 查找类似 项目人员 的本地化字符串。
+ /// 查找类似 项目人员 的本地化字符串。
///
internal static string mainI_projectPersonnel {
get {
@@ -673,7 +673,7 @@ namespace Resources {
}
///
- /// 查找类似 工地名称 的本地化字符串。
+ /// 查找类似 工地名称 的本地化字符串。
///
internal static string mainI_projectSiteName {
get {
@@ -682,7 +682,7 @@ namespace Resources {
}
///
- /// 查找类似 质量一次验收合格率 的本地化字符串。
+ /// 查找类似 质量一次验收合格率 的本地化字符串。
///
internal static string mainI_qualityFirstAcceptancePassRate {
get {
@@ -691,7 +691,7 @@ namespace Resources {
}
///
- /// 查找类似 返修 的本地化字符串。
+ /// 查找类似 返修 的本地化字符串。
///
internal static string mainI_rework {
get {
@@ -700,7 +700,7 @@ namespace Resources {
}
///
- /// 查找类似 安全人工时 的本地化字符串。
+ /// 查找类似 安全人工时 的本地化字符串。
///
internal static string mainI_safeManHours {
get {
@@ -709,7 +709,7 @@ namespace Resources {
}
///
- /// 查找类似 安全数据统计 的本地化字符串。
+ /// 查找类似 安全数据统计 的本地化字符串。
///
internal static string mainI_safetyDataStatistics {
get {
@@ -718,7 +718,7 @@ namespace Resources {
}
///
- /// 查找类似 安全隐患整改单 的本地化字符串。
+ /// 查找类似 安全隐患整改单 的本地化字符串。
///
internal static string mainI_safetyHazardRectificationOrders {
get {
@@ -727,7 +727,7 @@ namespace Resources {
}
///
- /// 查找类似 状态 的本地化字符串。
+ /// 查找类似 状态 的本地化字符串。
///
internal static string mainI_status {
get {
@@ -736,7 +736,7 @@ namespace Resources {
}
///
- /// 查找类似 停工 的本地化字符串。
+ /// 查找类似 停工 的本地化字符串。
///
internal static string mainI_suspended {
get {
@@ -745,7 +745,7 @@ namespace Resources {
}
///
- /// 查找类似 总数(个) 的本地化字符串。
+ /// 查找类似 总数(个) 的本地化字符串。
///
internal static string mainI_total {
get {
@@ -754,7 +754,7 @@ namespace Resources {
}
///
- /// 查找类似 管理人员总数 的本地化字符串。
+ /// 查找类似 管理人员总数 的本地化字符串。
///
internal static string mainI_totalNumberOfManagers {
get {
@@ -763,7 +763,7 @@ namespace Resources {
}
///
- /// 查找类似 作业人员总数 的本地化字符串。
+ /// 查找类似 作业人员总数 的本地化字符串。
///
internal static string mainI_totalNumberOfWorkers {
get {
@@ -772,7 +772,7 @@ namespace Resources {
}
///
- /// 查找类似 在建 的本地化字符串。
+ /// 查找类似 在建 的本地化字符串。
///
internal static string mainI_underConstruction {
get {
@@ -781,7 +781,7 @@ namespace Resources {
}
///
- /// 查找类似 单位:(个) 的本地化字符串。
+ /// 查找类似 单位:(个) 的本地化字符串。
///
internal static string mainI_units {
get {
@@ -790,7 +790,7 @@ namespace Resources {
}
///
- /// 查找类似 焊接 的本地化字符串。
+ /// 查找类似 焊接 的本地化字符串。
///
internal static string mainI_welding {
get {
@@ -799,7 +799,7 @@ namespace Resources {
}
///
- /// 查找类似 焊接一次合格率统计 的本地化字符串。
+ /// 查找类似 焊接一次合格率统计 的本地化字符串。
///
internal static string mainI_weldingFirstPassRateStatistics {
get {
@@ -808,7 +808,7 @@ namespace Resources {
}
///
- /// 查找类似 焊接统计 的本地化字符串。
+ /// 查找类似 焊接统计 的本地化字符串。
///
internal static string mainI_weldingStatistics {
get {
@@ -817,7 +817,7 @@ namespace Resources {
}
///
- /// 查找类似 焊口 的本地化字符串。
+ /// 查找类似 焊口 的本地化字符串。
///
internal static string mainI_welds {
get {
@@ -826,7 +826,7 @@ namespace Resources {
}
///
- /// 查找类似 高空 的本地化字符串。
+ /// 查找类似 高空 的本地化字符串。
///
internal static string mainProject2_altitude {
get {
@@ -835,7 +835,7 @@ namespace Resources {
}
///
- /// 查找类似 审批完成 的本地化字符串。
+ /// 查找类似 审批完成 的本地化字符串。
///
internal static string mainProject2_ApprovalCompleted {
get {
@@ -844,7 +844,7 @@ namespace Resources {
}
///
- /// 查找类似 到货量 的本地化字符串。
+ /// 查找类似 到货量 的本地化字符串。
///
internal static string mainProject2_ArrivalQuantity {
get {
@@ -853,7 +853,7 @@ namespace Resources {
}
///
- /// 查找类似 已完成 的本地化字符串。
+ /// 查找类似 已完成 的本地化字符串。
///
internal static string mainProject2_CompletedRectification {
get {
@@ -862,7 +862,7 @@ namespace Resources {
}
///
- /// 查找类似 已办任务 的本地化字符串。
+ /// 查找类似 已办任务 的本地化字符串。
///
internal static string mainProject2_CompletedTasks {
get {
@@ -871,7 +871,7 @@ namespace Resources {
}
///
- /// 查找类似 施工方案审查批次 的本地化字符串。
+ /// 查找类似 施工方案审查批次 的本地化字符串。
///
internal static string mainProject2_ConPlanReviewBatch {
get {
@@ -880,7 +880,7 @@ namespace Resources {
}
///
- /// 查找类似 合同工期 的本地化字符串。
+ /// 查找类似 合同工期 的本地化字符串。
///
internal static string mainProject2_ContractDuration {
get {
@@ -889,7 +889,7 @@ namespace Resources {
}
///
- /// 查找类似 合同到期时间 的本地化字符串。
+ /// 查找类似 合同到期时间 的本地化字符串。
///
internal static string mainProject2_ContractExpiryDate {
get {
@@ -898,7 +898,7 @@ namespace Resources {
}
///
- /// 查找类似 合同剩余 的本地化字符串。
+ /// 查找类似 合同剩余 的本地化字符串。
///
internal static string mainProject2_ContractRemaining {
get {
@@ -907,7 +907,7 @@ namespace Resources {
}
///
- /// 查找类似 累计安全人工时 的本地化字符串。
+ /// 查找类似 累计安全人工时 的本地化字符串。
///
internal static string mainProject2_CumulativeSafeWorkHours {
get {
@@ -916,7 +916,7 @@ namespace Resources {
}
///
- /// 查找类似 当前现场人数 的本地化字符串。
+ /// 查找类似 当前现场人数 的本地化字符串。
///
internal static string mainProject2_CurrentOnsitePersonnel {
get {
@@ -925,7 +925,7 @@ namespace Resources {
}
///
- /// 查找类似 危险项目 的本地化字符串。
+ /// 查找类似 危险项目 的本地化字符串。
///
internal static string mainProject2_DangerousProject {
get {
@@ -934,7 +934,7 @@ namespace Resources {
}
///
- /// 查找类似 设计量 的本地化字符串。
+ /// 查找类似 设计量 的本地化字符串。
///
internal static string mainProject2_DesignQuantity {
get {
@@ -943,7 +943,7 @@ namespace Resources {
}
///
- /// 查找类似 设备材料 的本地化字符串。
+ /// 查找类似 设备材料 的本地化字符串。
///
internal static string mainProject2_EquipmentMaterials {
get {
@@ -952,7 +952,7 @@ namespace Resources {
}
///
- /// 查找类似 全屏 的本地化字符串。
+ /// 查找类似 全屏 的本地化字符串。
///
internal static string mainProject2_FullScreen {
get {
@@ -961,7 +961,7 @@ namespace Resources {
}
///
- /// 查找类似 领料量 的本地化字符串。
+ /// 查找类似 领料量 的本地化字符串。
///
internal static string mainProject2_IssueQuantity {
get {
@@ -970,7 +970,7 @@ namespace Resources {
}
///
- /// 查找类似 关键事项 的本地化字符串。
+ /// 查找类似 关键事项 的本地化字符串。
///
internal static string mainProject2_KeyMatters {
get {
@@ -979,7 +979,7 @@ namespace Resources {
}
///
- /// 查找类似 关键事项准点率 的本地化字符串。
+ /// 查找类似 关键事项准点率 的本地化字符串。
///
internal static string mainProject2_KeyMattersTimelinessRate {
get {
@@ -988,7 +988,7 @@ namespace Resources {
}
///
- /// 查找类似 一级高温 的本地化字符串。
+ /// 查找类似 一级高温 的本地化字符串。
///
internal static string mainProject2_LoseOneSTemper {
get {
@@ -997,7 +997,7 @@ namespace Resources {
}
///
- /// 查找类似 材料类别 的本地化字符串。
+ /// 查找类似 材料类别 的本地化字符串。
///
internal static string mainProject2_MaterialCategory {
get {
@@ -1006,7 +1006,7 @@ namespace Resources {
}
///
- /// 查找类似 材料统计 的本地化字符串。
+ /// 查找类似 材料统计 的本地化字符串。
///
internal static string mainProject2_MaterialLabel {
get {
@@ -1015,7 +1015,7 @@ namespace Resources {
}
///
- /// 查找类似 材料统计 的本地化字符串。
+ /// 查找类似 材料统计 的本地化字符串。
///
internal static string mainProject2_MaterialStatistics {
get {
@@ -1024,7 +1024,7 @@ namespace Resources {
}
///
- /// 查找类似 机械预警 的本地化字符串。
+ /// 查找类似 机械预警 的本地化字符串。
///
internal static string mainProject2_MechanicalWarning {
get {
@@ -1033,7 +1033,16 @@ namespace Resources {
}
///
- /// 查找类似 未遂事件 的本地化字符串。
+ /// 查找类似 月计划完成情况 的本地化字符串。
+ ///
+ internal static string mainProject2_MonthPlanDone {
+ get {
+ return ResourceManager.GetString("mainProject2_MonthPlanDone", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 未遂事件 的本地化字符串。
///
internal static string mainProject2_NearMissIncidents {
get {
@@ -1042,7 +1051,7 @@ namespace Resources {
}
///
- /// 查找类似 完工人数 的本地化字符串。
+ /// 查找类似 完工人数 的本地化字符串。
///
internal static string mainProject2_NumberOfCompletions {
get {
@@ -1051,7 +1060,7 @@ namespace Resources {
}
///
- /// 查找类似 施工人数 的本地化字符串。
+ /// 查找类似 施工人数 的本地化字符串。
///
internal static string mainProject2_NumberOfConstructions {
get {
@@ -1060,7 +1069,7 @@ namespace Resources {
}
///
- /// 查找类似 培训人数 的本地化字符串。
+ /// 查找类似 培训人数 的本地化字符串。
///
internal static string mainProject2_NumberOfTrainees {
get {
@@ -1069,7 +1078,7 @@ namespace Resources {
}
///
- /// 查找类似 打开代办 的本地化字符串。
+ /// 查找类似 打开代办 的本地化字符串。
///
internal static string mainProject2_OpenPendingTasks {
get {
@@ -1078,7 +1087,7 @@ namespace Resources {
}
///
- /// 查找类似 其他 的本地化字符串。
+ /// 查找类似 其他 的本地化字符串。
///
internal static string mainProject2_other {
get {
@@ -1087,7 +1096,7 @@ namespace Resources {
}
///
- /// 查找类似 待办事项 的本地化字符串。
+ /// 查找类似 待办事项 的本地化字符串。
///
internal static string mainProject2_PendingMatters {
get {
@@ -1096,7 +1105,7 @@ namespace Resources {
}
///
- /// 查找类似 百分比 的本地化字符串。
+ /// 查找类似 百分比 的本地化字符串。
///
internal static string mainProject2_Percentage {
get {
@@ -1105,7 +1114,7 @@ namespace Resources {
}
///
- /// 查找类似 个人流程 的本地化字符串。
+ /// 查找类似 个人流程 的本地化字符串。
///
internal static string mainProject2_PersonalProcess {
get {
@@ -1114,7 +1123,7 @@ namespace Resources {
}
///
- /// 查找类似 人员信息 的本地化字符串。
+ /// 查找类似 人员信息 的本地化字符串。
///
internal static string mainProject2_PersonnelInformation {
get {
@@ -1123,7 +1132,7 @@ namespace Resources {
}
///
- /// 查找类似 人员信息 的本地化字符串。
+ /// 查找类似 人员信息 的本地化字符串。
///
internal static string mainProject2_PersonnelLabel {
get {
@@ -1132,7 +1141,7 @@ namespace Resources {
}
///
- /// 查找类似 管道材料 的本地化字符串。
+ /// 查找类似 管道材料 的本地化字符串。
///
internal static string mainProject2_PipeMaterials {
get {
@@ -1141,7 +1150,7 @@ namespace Resources {
}
///
- /// 查找类似 进度统计 的本地化字符串。
+ /// 查找类似 进度统计 的本地化字符串。
///
internal static string mainProject2_ProgressStatistics {
get {
@@ -1150,7 +1159,7 @@ namespace Resources {
}
///
- /// 查找类似 采购量 的本地化字符串。
+ /// 查找类似 采购量 的本地化字符串。
///
internal static string mainProject2_PurchaseQuantity {
get {
@@ -1159,7 +1168,7 @@ namespace Resources {
}
///
- /// 查找类似 质量概况 的本地化字符串。
+ /// 查找类似 质量概况 的本地化字符串。
///
internal static string mainProject2_QualityProfile {
get {
@@ -1168,7 +1177,7 @@ namespace Resources {
}
///
- /// 查找类似 质量培训 的本地化字符串。
+ /// 查找类似 质量培训 的本地化字符串。
///
internal static string mainProject2_QualityTraining {
get {
@@ -1177,7 +1186,7 @@ namespace Resources {
}
///
- /// 查找类似 质量安全预警 的本地化字符串。
+ /// 查找类似 质量安全预警 的本地化字符串。
///
internal static string mainProject2_Quawarning {
get {
@@ -1186,7 +1195,7 @@ namespace Resources {
}
///
- /// 查找类似 整改率 的本地化字符串。
+ /// 查找类似 整改率 的本地化字符串。
///
internal static string mainProject2_RectificationRate {
get {
@@ -1195,7 +1204,7 @@ namespace Resources {
}
///
- /// 查找类似 风险预警 的本地化字符串。
+ /// 查找类似 风险预警 的本地化字符串。
///
internal static string mainProject2_RiskEarlyWarning {
get {
@@ -1204,7 +1213,7 @@ namespace Resources {
}
///
- /// 查找类似 安全管理人员 的本地化字符串。
+ /// 查找类似 安全管理人员 的本地化字符串。
///
internal static string mainProject2_SafeManagementPersonnel {
get {
@@ -1213,7 +1222,7 @@ namespace Resources {
}
///
- /// 查找类似 本月安全人工时 的本地化字符串。
+ /// 查找类似 本月安全人工时 的本地化字符串。
///
internal static string mainProject2_SafeWorkHoursThisMonth {
get {
@@ -1222,7 +1231,7 @@ namespace Resources {
}
///
- /// 查找类似 超危险项目 的本地化字符串。
+ /// 查找类似 超危险项目 的本地化字符串。
///
internal static string mainProject2_SuperDangerousProject {
get {
@@ -1231,7 +1240,7 @@ namespace Resources {
}
///
- /// 查找类似 项目级首页(新) 的本地化字符串。
+ /// 查找类似 项目级首页(新) 的本地化字符串。
///
internal static string mainProject2_title {
get {
@@ -1240,7 +1249,7 @@ namespace Resources {
}
///
- /// 查找类似 管理人员总数 的本地化字符串。
+ /// 查找类似 管理人员总数 的本地化字符串。
///
internal static string mainProject2_TotalManagers {
get {
@@ -1249,7 +1258,7 @@ namespace Resources {
}
///
- /// 查找类似 总数 的本地化字符串。
+ /// 查找类似 总数 的本地化字符串。
///
internal static string mainProject2_TotalRectificationData {
get {
@@ -1258,7 +1267,7 @@ namespace Resources {
}
///
- /// 查找类似 安全培训累计人员 的本地化字符串。
+ /// 查找类似 安全培训累计人员 的本地化字符串。
///
internal static string mainProject2_TotalSafeTrainingPersonnel {
get {
@@ -1267,7 +1276,7 @@ namespace Resources {
}
///
- /// 查找类似 作业人员总数 的本地化字符串。
+ /// 查找类似 作业人员总数 的本地化字符串。
///
internal static string mainProject2_TotalWorkers {
get {
@@ -1276,7 +1285,7 @@ namespace Resources {
}
///
- /// 查找类似 未完成 的本地化字符串。
+ /// 查找类似 未完成 的本地化字符串。
///
internal static string mainProject2_UncompletedRectification {
get {
@@ -1285,7 +1294,16 @@ namespace Resources {
}
///
- /// 查找类似 工作台面 的本地化字符串。
+ /// 查找类似 周计划完成情况 的本地化字符串。
+ ///
+ internal static string mainProject2_WeekPlanDone {
+ get {
+ return ResourceManager.GetString("mainProject2_WeekPlanDone", resourceCulture);
+ }
+ }
+
+ ///
+ /// 查找类似 工作台面 的本地化字符串。
///
internal static string mainProject2_Workbench {
get {
@@ -1294,7 +1312,7 @@ namespace Resources {
}
///
- /// 查找类似 工作台面 的本地化字符串。
+ /// 查找类似 工作台面 的本地化字符串。
///
internal static string mainProject2_WorkbenchLabel {
get {
@@ -1303,7 +1321,7 @@ namespace Resources {
}
///
- /// 查找类似 工作许可 的本地化字符串。
+ /// 查找类似 工作许可 的本地化字符串。
///
internal static string mainProject2_WorkPermit {
get {
@@ -1312,7 +1330,7 @@ namespace Resources {
}
///
- /// 查找类似 事故事件数据 的本地化字符串。
+ /// 查找类似 事故事件数据 的本地化字符串。
///
internal static string main_new0_AccidentEventData_Label {
get {
@@ -1321,7 +1339,7 @@ namespace Resources {
}
///
- /// 查找类似 未遂事件 的本地化字符串。
+ /// 查找类似 未遂事件 的本地化字符串。
///
internal static string main_new0_AccidentEventData_NearMiss {
get {
@@ -1330,7 +1348,7 @@ namespace Resources {
}
///
- /// 查找类似 可记录 的本地化字符串。
+ /// 查找类似 可记录 的本地化字符串。
///
internal static string main_new0_AccidentEventData_RecordableEvent {
get {
@@ -1339,7 +1357,7 @@ namespace Resources {
}
///
- /// 查找类似 在建项目 的本地化字符串。
+ /// 查找类似 在建项目 的本地化字符串。
///
internal static string main_new0_BeUnderConstructionNum_Label {
get {
@@ -1348,7 +1366,7 @@ namespace Resources {
}
///
- /// 查找类似 总监 的本地化字符串。
+ /// 查找类似 总监 的本地化字符串。
///
internal static string main_new0_Branch_Director {
get {
@@ -1357,7 +1375,7 @@ namespace Resources {
}
///
- /// 查找类似 专职 的本地化字符串。
+ /// 查找类似 专职 的本地化字符串。
///
internal static string main_new0_Branch_FullTime {
get {
@@ -1366,7 +1384,7 @@ namespace Resources {
}
///
- /// 查找类似 分支机构 的本地化字符串。
+ /// 查找类似 分支机构 的本地化字符串。
///
internal static string main_new0_Branch_Label {
get {
@@ -1375,7 +1393,7 @@ namespace Resources {
}
///
- /// 查找类似 企业安委会 的本地化字符串。
+ /// 查找类似 企业安委会 的本地化字符串。
///
internal static string main_new0_CompanySafetyCommittee {
get {
@@ -1384,7 +1402,7 @@ namespace Resources {
}
///
- /// 查找类似 企业专题 的本地化字符串。
+ /// 查找类似 企业专题 的本地化字符串。
///
internal static string main_new0_CompanySpecialTopic {
get {
@@ -1393,7 +1411,7 @@ namespace Resources {
}
///
- /// 查找类似 在用 的本地化字符串。
+ /// 查找类似 在用 的本地化字符串。
///
internal static string main_new0_ConstructionEquipment_InUse {
get {
@@ -1402,7 +1420,7 @@ namespace Resources {
}
///
- /// 查找类似 施工机具设备数据 的本地化字符串。
+ /// 查找类似 施工机具设备数据 的本地化字符串。
///
internal static string main_new0_ConstructionEquipment_Label {
get {
@@ -1411,7 +1429,7 @@ namespace Resources {
}
///
- /// 查找类似 特种设备 的本地化字符串。
+ /// 查找类似 特种设备 的本地化字符串。
///
internal static string main_new0_ConstructionEquipment_SpecialEquipment {
get {
@@ -1420,7 +1438,7 @@ namespace Resources {
}
///
- /// 查找类似 综合预案 的本地化字符串。
+ /// 查找类似 综合预案 的本地化字符串。
///
internal static string main_new0_EmergencyManagementData_ComprehensivePlan {
get {
@@ -1429,7 +1447,7 @@ namespace Resources {
}
///
- /// 查找类似 演练次数 的本地化字符串。
+ /// 查找类似 演练次数 的本地化字符串。
///
internal static string main_new0_EmergencyManagementData_DrillNum {
get {
@@ -1438,7 +1456,7 @@ namespace Resources {
}
///
- /// 查找类似 应急管理数据 的本地化字符串。
+ /// 查找类似 应急管理数据 的本地化字符串。
///
internal static string main_new0_EmergencyManagementData_Label {
get {
@@ -1447,7 +1465,7 @@ namespace Resources {
}
///
- /// 查找类似 现场处置预案 的本地化字符串。
+ /// 查找类似 现场处置预案 的本地化字符串。
///
internal static string main_new0_EmergencyManagementData_OnSiteDisposalPlan {
get {
@@ -1456,7 +1474,7 @@ namespace Resources {
}
///
- /// 查找类似 专项预案 的本地化字符串。
+ /// 查找类似 专项预案 的本地化字符串。
///
internal static string main_new0_EmergencyManagementData_SpecialPlan {
get {
@@ -1465,7 +1483,7 @@ namespace Resources {
}
///
- /// 查找类似 总监 的本地化字符串。
+ /// 查找类似 总监 的本地化字符串。
///
internal static string main_new0_HeadOfficeNum_Director {
get {
@@ -1474,7 +1492,7 @@ namespace Resources {
}
///
- /// 查找类似 专职 的本地化字符串。
+ /// 查找类似 专职 的本地化字符串。
///
internal static string main_new0_HeadOfficeNum_FullTime {
get {
@@ -1483,7 +1501,7 @@ namespace Resources {
}
///
- /// 查找类似 企业总部人数 的本地化字符串。
+ /// 查找类似 企业总部人数 的本地化字符串。
///
internal static string main_new0_HeadOfficeNum_Label {
get {
@@ -1492,7 +1510,7 @@ namespace Resources {
}
///
- /// 查找类似 整改闭环项 的本地化字符串。
+ /// 查找类似 整改闭环项 的本地化字符串。
///
internal static string main_new0_HiddenHazardInspectionData_ClosedItems {
get {
@@ -1501,7 +1519,7 @@ namespace Resources {
}
///
- /// 查找类似 一般隐患 的本地化字符串。
+ /// 查找类似 一般隐患 的本地化字符串。
///
internal static string main_new0_HiddenHazardInspectionData_GeneralHiddenHazard {
get {
@@ -1510,7 +1528,7 @@ namespace Resources {
}
///
- /// 查找类似 隐患排查治理数据 的本地化字符串。
+ /// 查找类似 隐患排查治理数据 的本地化字符串。
///
internal static string main_new0_HiddenHazardInspectionData_Label {
get {
@@ -1519,7 +1537,7 @@ namespace Resources {
}
///
- /// 查找类似 重大隐患 的本地化字符串。
+ /// 查找类似 重大隐患 的本地化字符串。
///
internal static string main_new0_HiddenHazardInspectionData_MajorHiddenHazard {
get {
@@ -1528,7 +1546,7 @@ namespace Resources {
}
///
- /// 查找类似 未整改完成项 的本地化字符串。
+ /// 查找类似 未整改完成项 的本地化字符串。
///
internal static string main_new0_HiddenHazardInspectionData_UnfinishedItems {
get {
@@ -1537,7 +1555,7 @@ namespace Resources {
}
///
- /// 查找类似 关闭项 的本地化字符串。
+ /// 查找类似 关闭项 的本地化字符串。
///
internal static string main_new0_HighRiskWorkPermit_ClosedItems {
get {
@@ -1546,7 +1564,7 @@ namespace Resources {
}
///
- /// 查找类似 许可项 的本地化字符串。
+ /// 查找类似 许可项 的本地化字符串。
///
internal static string main_new0_HighRiskWorkPermit_Items {
get {
@@ -1555,7 +1573,7 @@ namespace Resources {
}
///
- /// 查找类似 高风险作业许可数据 的本地化字符串。
+ /// 查找类似 高风险作业许可数据 的本地化字符串。
///
internal static string main_new0_HighRiskWorkPermit_Label {
get {
@@ -1564,7 +1582,7 @@ namespace Resources {
}
///
- /// 查找类似 审批完成 的本地化字符串。
+ /// 查找类似 审批完成 的本地化字符串。
///
internal static string main_new0_LargeEngineeringData_CompletedItems {
get {
@@ -1573,7 +1591,7 @@ namespace Resources {
}
///
- /// 查找类似 施工个数 的本地化字符串。
+ /// 查找类似 施工个数 的本地化字符串。
///
internal static string main_new0_LargeEngineeringData_ConstructionNum {
get {
@@ -1582,7 +1600,7 @@ namespace Resources {
}
///
- /// 查找类似 完工个数 的本地化字符串。
+ /// 查找类似 完工个数 的本地化字符串。
///
internal static string main_new0_LargeEngineeringData_FinishedNum {
get {
@@ -1591,7 +1609,7 @@ namespace Resources {
}
///
- /// 查找类似 应急管理数据 的本地化字符串。
+ /// 查找类似 应急管理数据 的本地化字符串。
///
internal static string main_new0_LargeEngineeringData_Label {
get {
@@ -1600,7 +1618,7 @@ namespace Resources {
}
///
- /// 查找类似 危大工程 的本地化字符串。
+ /// 查找类似 危大工程 的本地化字符串。
///
internal static string main_new0_LargeEngineeringData_LargeEngineering {
get {
@@ -1609,7 +1627,7 @@ namespace Resources {
}
///
- /// 查找类似 超危大工程 的本地化字符串。
+ /// 查找类似 超危大工程 的本地化字符串。
///
internal static string main_new0_LargeEngineeringData_SuperLargeEngineering {
get {
@@ -1618,7 +1636,7 @@ namespace Resources {
}
///
- /// 查找类似 培训人次数 的本地化字符串。
+ /// 查找类似 培训人次数 的本地化字符串。
///
internal static string main_new0_LargeEngineeringData_TrainingPersonNum {
get {
@@ -1627,7 +1645,7 @@ namespace Resources {
}
///
- /// 查找类似 在施危大工程 的本地化字符串。
+ /// 查找类似 在施危大工程 的本地化字符串。
///
internal static string main_new0_MajorProjectsUnderConstructionNum_Label {
get {
@@ -1636,7 +1654,7 @@ namespace Resources {
}
///
- /// 查找类似 总监 的本地化字符串。
+ /// 查找类似 总监 的本地化字符串。
///
internal static string main_new0_ProjectNum_Director {
get {
@@ -1645,7 +1663,7 @@ namespace Resources {
}
///
- /// 查找类似 专职 的本地化字符串。
+ /// 查找类似 专职 的本地化字符串。
///
internal static string main_new0_ProjectNum_FullTime {
get {
@@ -1654,7 +1672,7 @@ namespace Resources {
}
///
- /// 查找类似 项目人数 的本地化字符串。
+ /// 查找类似 项目人数 的本地化字符串。
///
internal static string main_new0_ProjectNum_Label {
get {
@@ -1663,7 +1681,7 @@ namespace Resources {
}
///
- /// 查找类似 参建人数 的本地化字符串。
+ /// 查找类似 参建人数 的本地化字符串。
///
internal static string main_new0_ProjectNum_Participants {
get {
@@ -1672,7 +1690,7 @@ namespace Resources {
}
///
- /// 查找类似 项目安全领导小组 的本地化字符串。
+ /// 查找类似 项目安全领导小组 的本地化字符串。
///
internal static string main_new0_ProjectSafetyLeadershipGroup {
get {
@@ -1681,7 +1699,7 @@ namespace Resources {
}
///
- /// 查找类似 项目安全例会 的本地化字符串。
+ /// 查找类似 项目安全例会 的本地化字符串。
///
internal static string main_new0_ProjectSafetyMeeting {
get {
@@ -1690,7 +1708,7 @@ namespace Resources {
}
///
- /// 查找类似 风险数据分析 的本地化字符串。
+ /// 查找类似 风险数据分析 的本地化字符串。
///
internal static string main_new0_RiskAnalysisData_Label {
get {
@@ -1699,7 +1717,7 @@ namespace Resources {
}
///
- /// 查找类似 费用提取(万元) 的本地化字符串。
+ /// 查找类似 费用提取(万元) 的本地化字符串。
///
internal static string main_new0_SafeCost_Extraction {
get {
@@ -1708,7 +1726,7 @@ namespace Resources {
}
///
- /// 查找类似 安全费用数据 的本地化字符串。
+ /// 查找类似 安全费用数据 的本地化字符串。
///
internal static string main_new0_SafeCost_Label {
get {
@@ -1717,7 +1735,7 @@ namespace Resources {
}
///
- /// 查找类似 费用使用 的本地化字符串。
+ /// 查找类似 费用使用 的本地化字符串。
///
internal static string main_new0_SafeCost_Usage {
get {
@@ -1726,7 +1744,7 @@ namespace Resources {
}
///
- /// 查找类似 注安师 的本地化字符串。
+ /// 查找类似 注安师 的本地化字符串。
///
internal static string main_new0_SafetyInjectionEngineer_Label {
get {
@@ -1735,7 +1753,7 @@ namespace Resources {
}
///
- /// 查找类似 总数 的本地化字符串。
+ /// 查找类似 总数 的本地化字符串。
///
internal static string main_new0_SafetyInjectionEngineer_Total {
get {
@@ -1744,7 +1762,7 @@ namespace Resources {
}
///
- /// 查找类似 安全会议数据 的本地化字符串。
+ /// 查找类似 安全会议数据 的本地化字符串。
///
internal static string main_new0_SafetyMeetingData_Label {
get {
@@ -1753,7 +1771,7 @@ namespace Resources {
}
///
- /// 查找类似 安全监督检查数据 的本地化字符串。
+ /// 查找类似 安全监督检查数据 的本地化字符串。
///
internal static string main_new0_SafetySupervisionAndInspectionData_Label {
get {
@@ -1762,7 +1780,7 @@ namespace Resources {
}
///
- /// 查找类似 安全教育培训人次数数据 的本地化字符串。
+ /// 查找类似 安全教育培训人次数数据 的本地化字符串。
///
internal static string main_new0_SafetyTrainingData_Label {
get {
@@ -1771,7 +1789,7 @@ namespace Resources {
}
///
- /// 查找类似 三级安全教育培训 的本地化字符串。
+ /// 查找类似 三级安全教育培训 的本地化字符串。
///
internal static string main_new0_SafetyTrainingData_LevelThreeTraining {
get {
@@ -1780,7 +1798,7 @@ namespace Resources {
}
///
- /// 查找类似 特种作业培训 的本地化字符串。
+ /// 查找类似 特种作业培训 的本地化字符串。
///
internal static string main_new0_SafetyTrainingData_SpecialOperationTraining {
get {
@@ -1789,7 +1807,7 @@ namespace Resources {
}
///
- /// 查找类似 专项培训 的本地化字符串。
+ /// 查找类似 专项培训 的本地化字符串。
///
internal static string main_new0_SafetyTrainingData_SpecialTraining {
get {
@@ -1798,7 +1816,7 @@ namespace Resources {
}
///
- /// 查找类似 停工项目 的本地化字符串。
+ /// 查找类似 停工项目 的本地化字符串。
///
internal static string main_new0_ShutdownNum_Label {
get {
@@ -1807,7 +1825,7 @@ namespace Resources {
}
///
- /// 查找类似 安全生产 的本地化字符串。
+ /// 查找类似 安全生产 的本地化字符串。
///
internal static string main_new0_Title {
get {
@@ -1816,7 +1834,7 @@ namespace Resources {
}
///
- /// 查找类似 实时视频:线路1 的本地化字符串。
+ /// 查找类似 实时视频:线路1 的本地化字符串。
///
internal static string main_new0_Video_RealTimeVideo {
get {
@@ -1825,7 +1843,7 @@ namespace Resources {
}
///
- /// 查找类似 安全云监控 的本地化字符串。
+ /// 查找类似 安全云监控 的本地化字符串。
///
internal static string main_new0_Video_Title {
get {
@@ -1834,7 +1852,7 @@ namespace Resources {
}
///
- /// 查找类似 安全工时 的本地化字符串。
+ /// 查找类似 安全工时 的本地化字符串。
///
internal static string main_new0_WorkingHourData_Label {
get {
@@ -1843,7 +1861,7 @@ namespace Resources {
}
///
- /// 查找类似 完成达因数 的本地化字符串。
+ /// 查找类似 完成达因数 的本地化字符串。
///
internal static string main_new1_HjData_CompleteDineNum_Label {
get {
@@ -1852,7 +1870,7 @@ namespace Resources {
}
///
- /// 查找类似 拍片总数 的本地化字符串。
+ /// 查找类似 拍片总数 的本地化字符串。
///
internal static string main_new1_HjData_HjallNumber_Label {
get {
@@ -1861,7 +1879,7 @@ namespace Resources {
}
///
- /// 查找类似 合格片数 的本地化字符串。
+ /// 查找类似 合格片数 的本地化字符串。
///
internal static string main_new1_HjData_HjfinishNumber_Label {
get {
@@ -1870,7 +1888,7 @@ namespace Resources {
}
///
- /// 查找类似 一次拍片合格率 的本地化字符串。
+ /// 查找类似 一次拍片合格率 的本地化字符串。
///
internal static string main_new1_HjData_Hjzgl_Label {
get {
@@ -1879,7 +1897,7 @@ namespace Resources {
}
///
- /// 查找类似 焊接数据 的本地化字符串。
+ /// 查找类似 焊接数据 的本地化字符串。
///
internal static string main_new1_HjData_Label {
get {
@@ -1888,7 +1906,7 @@ namespace Resources {
}
///
- /// 查找类似 总达因数 的本地化字符串。
+ /// 查找类似 总达因数 的本地化字符串。
///
internal static string main_new1_HjData_TotalDineNum_Label {
get {
@@ -1897,7 +1915,7 @@ namespace Resources {
}
///
- /// 查找类似 焊工总数 的本地化字符串。
+ /// 查找类似 焊工总数 的本地化字符串。
///
internal static string main_new1_HjData_WelderNum_Label {
get {
@@ -1906,7 +1924,7 @@ namespace Resources {
}
///
- /// 查找类似 分支机构人数 的本地化字符串。
+ /// 查找类似 分支机构人数 的本地化字符串。
///
internal static string main_new1_ManagerData_BranchPersonNum_Label {
get {
@@ -1915,7 +1933,7 @@ namespace Resources {
}
///
- /// 查找类似 企业总部人数 的本地化字符串。
+ /// 查找类似 企业总部人数 的本地化字符串。
///
internal static string main_new1_ManagerData_CompanyPersonNum_Label {
get {
@@ -1924,7 +1942,7 @@ namespace Resources {
}
///
- /// 查找类似 质量管理人员数据 的本地化字符串。
+ /// 查找类似 质量管理人员数据 的本地化字符串。
///
internal static string main_new1_ManagerData_Label {
get {
@@ -1933,7 +1951,7 @@ namespace Resources {
}
///
- /// 查找类似 项目部人数 的本地化字符串。
+ /// 查找类似 项目部人数 的本地化字符串。
///
internal static string main_new1_ManagerData_ProjectPersonNum_Label {
get {
@@ -1942,7 +1960,7 @@ namespace Resources {
}
///
- /// 查找类似 机械预警 的本地化字符串。
+ /// 查找类似 机械预警 的本地化字符串。
///
internal static string main_new1_MeasuringInstrumentsData_JxyjNum_Label {
get {
@@ -1951,7 +1969,7 @@ namespace Resources {
}
///
- /// 查找类似 计量器具数据 的本地化字符串。
+ /// 查找类似 计量器具数据 的本地化字符串。
///
internal static string main_new1_MeasuringInstrumentsData_Label {
get {
@@ -1960,7 +1978,7 @@ namespace Resources {
}
///
- /// 查找类似 校准合格 的本地化字符串。
+ /// 查找类似 校准合格 的本地化字符串。
///
internal static string main_new1_MeasuringInstrumentsData_OKNum_Label {
get {
@@ -1969,7 +1987,7 @@ namespace Resources {
}
///
- /// 查找类似 资质预警 的本地化字符串。
+ /// 查找类似 资质预警 的本地化字符串。
///
internal static string main_new1_MeasuringInstrumentsData_QualityChartAnalysis_Label {
get {
@@ -1978,7 +1996,7 @@ namespace Resources {
}
///
- /// 查找类似 在用计量器具 的本地化字符串。
+ /// 查找类似 在用计量器具 的本地化字符串。
///
internal static string main_new1_MeasuringInstrumentsData_UseNum_Label {
get {
@@ -1987,7 +2005,7 @@ namespace Resources {
}
///
- /// 查找类似 NCR数据 的本地化字符串。
+ /// 查找类似 NCR数据 的本地化字符串。
///
internal static string main_new1_NCRData_Label {
get {
@@ -1996,7 +2014,7 @@ namespace Resources {
}
///
- /// 查找类似 未整改完成项 的本地化字符串。
+ /// 查找类似 未整改完成项 的本地化字符串。
///
internal static string main_new1_NCRData_NcrwZgbhx_Label {
get {
@@ -2005,7 +2023,7 @@ namespace Resources {
}
///
- /// 查找类似 整改闭环项 的本地化字符串。
+ /// 查找类似 整改闭环项 的本地化字符串。
///
internal static string main_new1_NCRData_NcrZgbhx_Label {
get {
@@ -2014,7 +2032,7 @@ namespace Resources {
}
///
- /// 查找类似 整改率 的本地化字符串。
+ /// 查找类似 整改率 的本地化字符串。
///
internal static string main_new1_NCRData_NcrZgl_Label {
get {
@@ -2023,7 +2041,7 @@ namespace Resources {
}
///
- /// 查找类似 共检总数 的本地化字符串。
+ /// 查找类似 共检总数 的本地化字符串。
///
internal static string main_new1_QualityInspection_AllInspectionManagement_Label {
get {
@@ -2032,7 +2050,7 @@ namespace Resources {
}
///
- /// 查找类似 施工质量一次共检合格率 的本地化字符串。
+ /// 查找类似 施工质量一次共检合格率 的本地化字符串。
///
internal static string main_new1_QualityInspection_InspectionManagementZgl_Label {
get {
@@ -2041,7 +2059,7 @@ namespace Resources {
}
///
- /// 查找类似 一次合格数量 的本地化字符串。
+ /// 查找类似 一次合格数量 的本地化字符串。
///
internal static string main_new1_QualityInspection_IsOnceInspectionManagement_Label {
get {
@@ -2050,7 +2068,7 @@ namespace Resources {
}
///
- /// 查找类似 质量验收数据 的本地化字符串。
+ /// 查找类似 质量验收数据 的本地化字符串。
///
internal static string main_new1_QualityInspection_Label {
get {
@@ -2059,7 +2077,7 @@ namespace Resources {
}
///
- /// 查找类似 质量巡检问题治理数据 的本地化字符串。
+ /// 查找类似 质量巡检问题治理数据 的本地化字符串。
///
internal static string main_new1_QualityProblem_Label {
get {
@@ -2068,7 +2086,7 @@ namespace Resources {
}
///
- /// 查找类似 整改闭环项 的本地化字符串。
+ /// 查找类似 整改闭环项 的本地化字符串。
///
internal static string main_new1_QualityProblem_ProblemCompletedNum_Label {
get {
@@ -2077,7 +2095,7 @@ namespace Resources {
}
///
- /// 查找类似 未整改完成项 的本地化字符串。
+ /// 查找类似 未整改完成项 的本地化字符串。
///
internal static string main_new1_QualityProblem_ProblemNotCompletedNum_Label {
get {
@@ -2086,7 +2104,7 @@ namespace Resources {
}
///
- /// 查找类似 整改率 的本地化字符串。
+ /// 查找类似 整改率 的本地化字符串。
///
internal static string main_new1_QualityProblem_ProblemZgl_Label {
get {
@@ -2095,7 +2113,7 @@ namespace Resources {
}
///
- /// 查找类似 质量培训数据 的本地化字符串。
+ /// 查找类似 质量培训数据 的本地化字符串。
///
internal static string main_new1_QualityTrainingData_Label {
get {
@@ -2104,7 +2122,7 @@ namespace Resources {
}
///
- /// 查找类似 技术交底人次数 的本地化字符串。
+ /// 查找类似 技术交底人次数 的本地化字符串。
///
internal static string main_new1_QualityTrainingData_TechnicalDisclosePersonNum_Label {
get {
@@ -2113,7 +2131,7 @@ namespace Resources {
}
///
- /// 查找类似 质量培训人次数 的本地化字符串。
+ /// 查找类似 质量培训人次数 的本地化字符串。
///
internal static string main_new1_QualityTrainingData_TrainPersonNum_Label {
get {
@@ -2122,7 +2140,7 @@ namespace Resources {
}
///
- /// 查找类似 质量管理 的本地化字符串。
+ /// 查找类似 质量管理 的本地化字符串。
///
internal static string main_new1_Title {
get {
@@ -2131,7 +2149,7 @@ namespace Resources {
}
///
- /// 查找类似 紧固件 的本地化字符串。
+ /// 查找类似 紧固件 的本地化字符串。
///
internal static string main_new_bolt {
get {
@@ -2140,7 +2158,7 @@ namespace Resources {
}
///
- /// 查找类似 完成 的本地化字符串。
+ /// 查找类似 完成 的本地化字符串。
///
internal static string main_new_completed {
get {
@@ -2149,7 +2167,7 @@ namespace Resources {
}
///
- /// 查找类似 设备材料 的本地化字符串。
+ /// 查找类似 设备材料 的本地化字符串。
///
internal static string main_new_equipmentMaterials {
get {
@@ -2158,7 +2176,7 @@ namespace Resources {
}
///
- /// 查找类似 一次共检合格率 的本地化字符串。
+ /// 查找类似 一次共检合格率 的本地化字符串。
///
internal static string main_new_firstInspectionPassRate {
get {
@@ -2167,7 +2185,7 @@ namespace Resources {
}
///
- /// 查找类似 垫片 的本地化字符串。
+ /// 查找类似 垫片 的本地化字符串。
///
internal static string main_new_gasket {
get {
@@ -2176,7 +2194,7 @@ namespace Resources {
}
///
- /// 查找类似 未遂事件 的本地化字符串。
+ /// 查找类似 未遂事件 的本地化字符串。
///
internal static string main_new_nearMissEvents {
get {
@@ -2185,7 +2203,7 @@ namespace Resources {
}
///
- /// 查找类似 在建项目 的本地化字符串。
+ /// 查找类似 在建项目 的本地化字符串。
///
internal static string main_new_ongoingProjects {
get {
@@ -2194,7 +2212,7 @@ namespace Resources {
}
///
- /// 查找类似 未完成 的本地化字符串。
+ /// 查找类似 未完成 的本地化字符串。
///
internal static string main_new_overdue {
get {
@@ -2203,7 +2221,7 @@ namespace Resources {
}
///
- /// 查找类似 管子 的本地化字符串。
+ /// 查找类似 管子 的本地化字符串。
///
internal static string main_new_pipe {
get {
@@ -2212,7 +2230,7 @@ namespace Resources {
}
///
- /// 查找类似 管件 的本地化字符串。
+ /// 查找类似 管件 的本地化字符串。
///
internal static string main_new_pipeFitting {
get {
@@ -2221,7 +2239,7 @@ namespace Resources {
}
///
- /// 查找类似 进度 的本地化字符串。
+ /// 查找类似 进度 的本地化字符串。
///
internal static string main_new_progress {
get {
@@ -2230,7 +2248,7 @@ namespace Resources {
}
///
- /// 查找类似 项目 的本地化字符串。
+ /// 查找类似 项目 的本地化字符串。
///
internal static string main_new_project {
get {
@@ -2239,7 +2257,7 @@ namespace Resources {
}
///
- /// 查找类似 项目详情 的本地化字符串。
+ /// 查找类似 项目详情 的本地化字符串。
///
internal static string main_new_projectDetails {
get {
@@ -2248,7 +2266,7 @@ namespace Resources {
}
///
- /// 查找类似 项目 的本地化字符串。
+ /// 查找类似 项目 的本地化字符串。
///
internal static string main_new_projects {
get {
@@ -2257,7 +2275,7 @@ namespace Resources {
}
///
- /// 查找类似 质量问题整改率 的本地化字符串。
+ /// 查找类似 质量问题整改率 的本地化字符串。
///
internal static string main_new_qualityIssuesRectificationRate {
get {
@@ -2266,7 +2284,7 @@ namespace Resources {
}
///
- /// 查找类似 质量管理人员 的本地化字符串。
+ /// 查找类似 质量管理人员 的本地化字符串。
///
internal static string main_new_qualityManagementPersonnel {
get {
@@ -2275,7 +2293,7 @@ namespace Resources {
}
///
- /// 查找类似 质量概况 的本地化字符串。
+ /// 查找类似 质量概况 的本地化字符串。
///
internal static string main_new_qualityOverview {
get {
@@ -2284,7 +2302,7 @@ namespace Resources {
}
///
- /// 查找类似 质量培训累计人员 的本地化字符串。
+ /// 查找类似 质量培训累计人员 的本地化字符串。
///
internal static string main_new_qualityTrainingCumulativePersonnel {
get {
@@ -2293,7 +2311,7 @@ namespace Resources {
}
///
- /// 查找类似 整改率 的本地化字符串。
+ /// 查找类似 整改率 的本地化字符串。
///
internal static string main_new_rectificationRate {
get {
@@ -2302,7 +2320,7 @@ namespace Resources {
}
///
- /// 查找类似 剩余天数 的本地化字符串。
+ /// 查找类似 剩余天数 的本地化字符串。
///
internal static string main_new_remainingDays {
get {
@@ -2311,7 +2329,7 @@ namespace Resources {
}
///
- /// 查找类似 安全培训累计人员 的本地化字符串。
+ /// 查找类似 安全培训累计人员 的本地化字符串。
///
internal static string main_new_safeTrainingCumulativePersonnel {
get {
@@ -2320,7 +2338,7 @@ namespace Resources {
}
///
- /// 查找类似 安全管理人员 的本地化字符串。
+ /// 查找类似 安全管理人员 的本地化字符串。
///
internal static string main_new_safetyManagementPersonnel {
get {
@@ -2329,7 +2347,7 @@ namespace Resources {
}
///
- /// 查找类似 总计 的本地化字符串。
+ /// 查找类似 总计 的本地化字符串。
///
internal static string main_new_total {
get {
@@ -2338,7 +2356,7 @@ namespace Resources {
}
///
- /// 查找类似 阀门 的本地化字符串。
+ /// 查找类似 阀门 的本地化字符串。
///
internal static string main_new_valve {
get {
@@ -2347,7 +2365,7 @@ namespace Resources {
}
///
- /// 查找类似 焊接一次合格率 的本地化字符串。
+ /// 查找类似 焊接一次合格率 的本地化字符串。
///
internal static string main_new_weldingFirstPassRate {
get {
@@ -2356,7 +2374,7 @@ namespace Resources {
}
///
- /// 查找类似 重大风险 的本地化字符串。
+ /// 查找类似 重大风险 的本地化字符串。
///
internal static string MajorRisk {
get {
@@ -2365,7 +2383,7 @@ namespace Resources {
}
///
- /// 查找类似 重大事故 的本地化字符串。
+ /// 查找类似 重大事故 的本地化字符串。
///
internal static string Major_accident {
get {
@@ -2374,7 +2392,7 @@ namespace Resources {
}
///
- /// 查找类似 管理人员总数 的本地化字符串。
+ /// 查找类似 管理人员总数 的本地化字符串。
///
internal static string managersCount {
get {
@@ -2383,7 +2401,7 @@ namespace Resources {
}
///
- /// 查找类似 材料管理 的本地化字符串。
+ /// 查找类似 材料管理 的本地化字符串。
///
internal static string MaterialManagement {
get {
@@ -2392,7 +2410,7 @@ namespace Resources {
}
///
- /// 查找类似 已领料 的本地化字符串。
+ /// 查找类似 已领料 的本地化字符串。
///
internal static string MaterialReceived {
get {
@@ -2401,7 +2419,7 @@ namespace Resources {
}
///
- /// 查找类似 最大化 的本地化字符串。
+ /// 查找类似 最大化 的本地化字符串。
///
internal static string maximize {
get {
@@ -2410,7 +2428,7 @@ namespace Resources {
}
///
- /// 查找类似 机械竣工 的本地化字符串。
+ /// 查找类似 机械竣工 的本地化字符串。
///
internal static string MechanicalCompletion {
get {
@@ -2419,7 +2437,7 @@ namespace Resources {
}
///
- /// 查找类似 机械预警 的本地化字符串。
+ /// 查找类似 机械预警 的本地化字符串。
///
internal static string MechanicalWarning {
get {
@@ -2428,7 +2446,7 @@ namespace Resources {
}
///
- /// 查找类似 中风险 的本地化字符串。
+ /// 查找类似 中风险 的本地化字符串。
///
internal static string Medium_risk {
get {
@@ -2437,7 +2455,7 @@ namespace Resources {
}
///
- /// 查找类似 消息 的本地化字符串。
+ /// 查找类似 消息 的本地化字符串。
///
internal static string message {
get {
@@ -2446,7 +2464,7 @@ namespace Resources {
}
///
- /// 查找类似 我的 的本地化字符串。
+ /// 查找类似 我的 的本地化字符串。
///
internal static string mine {
get {
@@ -2455,7 +2473,7 @@ namespace Resources {
}
///
- /// 查找类似 更多 的本地化字符串。
+ /// 查找类似 更多 的本地化字符串。
///
internal static string more {
get {
@@ -2464,7 +2482,7 @@ namespace Resources {
}
///
- /// 查找类似 您没有此模块操作权限,请联系管理员授权! 的本地化字符串。
+ /// 查找类似 您没有此模块操作权限,请联系管理员授权! 的本地化字符串。
///
internal static string NoAuthorize {
get {
@@ -2473,7 +2491,7 @@ namespace Resources {
}
///
- /// 查找类似 噪音 的本地化字符串。
+ /// 查找类似 噪音 的本地化字符串。
///
internal static string noise {
get {
@@ -2482,7 +2500,7 @@ namespace Resources {
}
///
- /// 查找类似 您没有权限进入项目管理模块! 的本地化字符串。
+ /// 查找类似 您没有权限进入项目管理模块! 的本地化字符串。
///
internal static string NoPermission {
get {
@@ -2491,7 +2509,7 @@ namespace Resources {
}
///
- /// 查找类似 通知管理 的本地化字符串。
+ /// 查找类似 通知管理 的本地化字符串。
///
internal static string NoticeManage {
get {
@@ -2500,7 +2518,7 @@ namespace Resources {
}
///
- /// 查找类似 未准点完成 的本地化字符串。
+ /// 查找类似 未准点完成 的本地化字符串。
///
internal static string Not_finished_on_time {
get {
@@ -2509,7 +2527,7 @@ namespace Resources {
}
///
- /// 查找类似 完工个数 的本地化字符串。
+ /// 查找类似 完工个数 的本地化字符串。
///
internal static string NumberOfCompletions {
get {
@@ -2518,7 +2536,7 @@ namespace Resources {
}
///
- /// 查找类似 施工个数 的本地化字符串。
+ /// 查找类似 施工个数 的本地化字符串。
///
internal static string NumberOfConstructions {
get {
@@ -2527,7 +2545,7 @@ namespace Resources {
}
///
- /// 查找类似 培训人次数 的本地化字符串。
+ /// 查找类似 培训人次数 的本地化字符串。
///
internal static string NumberOfTrainees {
get {
@@ -2536,7 +2554,7 @@ namespace Resources {
}
///
- /// 查找类似 整改完成数 的本地化字符串。
+ /// 查找类似 整改完成数 的本地化字符串。
///
internal static string Number_of_corrections_completed {
get {
@@ -2545,7 +2563,7 @@ namespace Resources {
}
///
- /// 查找类似 问题个数 的本地化字符串。
+ /// 查找类似 问题个数 的本地化字符串。
///
internal static string Number_of_questions {
get {
@@ -2554,7 +2572,7 @@ namespace Resources {
}
///
- /// 查找类似 一次共检合格率 的本地化字符串。
+ /// 查找类似 一次共检合格率 的本地化字符串。
///
internal static string OnePassRate {
get {
@@ -2563,7 +2581,7 @@ namespace Resources {
}
///
- /// 查找类似 焊接一次合格率 的本地化字符串。
+ /// 查找类似 焊接一次合格率 的本地化字符串。
///
internal static string OnePassRateOfWelding {
get {
@@ -2572,7 +2590,7 @@ namespace Resources {
}
///
- /// 查找类似 现场考勤 的本地化字符串。
+ /// 查找类似 现场考勤 的本地化字符串。
///
internal static string OnSiteAttendance {
get {
@@ -2581,7 +2599,7 @@ namespace Resources {
}
///
- /// 查找类似 准点率 的本地化字符串。
+ /// 查找类似 准点率 的本地化字符串。
///
internal static string On_time_rate {
get {
@@ -2590,7 +2608,7 @@ namespace Resources {
}
///
- /// 查找类似 在新标签页中打开 的本地化字符串。
+ /// 查找类似 在新标签页中打开 的本地化字符串。
///
internal static string OpensNewTab {
get {
@@ -2599,7 +2617,7 @@ namespace Resources {
}
///
- /// 查找类似 意见收集 的本地化字符串。
+ /// 查找类似 意见收集 的本地化字符串。
///
internal static string OpinionGathering {
get {
@@ -2608,7 +2626,7 @@ namespace Resources {
}
///
- /// 查找类似 其他 的本地化字符串。
+ /// 查找类似 其他 的本地化字符串。
///
internal static string other {
get {
@@ -2617,7 +2635,7 @@ namespace Resources {
}
///
- /// 查找类似 特别重大事故 的本地化字符串。
+ /// 查找类似 特别重大事故 的本地化字符串。
///
internal static string Particularly_serious_accident {
get {
@@ -2626,7 +2644,7 @@ namespace Resources {
}
///
- /// 查找类似 合格率 的本地化字符串。
+ /// 查找类似 合格率 的本地化字符串。
///
internal static string PassRate {
get {
@@ -2635,7 +2653,7 @@ namespace Resources {
}
///
- /// 查找类似 进度百分比 的本地化字符串。
+ /// 查找类似 进度百分比 的本地化字符串。
///
internal static string Percentage_of_progress {
get {
@@ -2644,7 +2662,7 @@ namespace Resources {
}
///
- /// 查找类似 桩基施工 的本地化字符串。
+ /// 查找类似 桩基施工 的本地化字符串。
///
internal static string Pilefoundationconstruction {
get {
@@ -2653,7 +2671,7 @@ namespace Resources {
}
///
- /// 查找类似 管道安装开始 的本地化字符串。
+ /// 查找类似 管道安装开始 的本地化字符串。
///
internal static string PipeInstallationStarts {
get {
@@ -2662,7 +2680,7 @@ namespace Resources {
}
///
- /// 查找类似 计划值 的本地化字符串。
+ /// 查找类似 计划值 的本地化字符串。
///
internal static string PlannedValue {
get {
@@ -2671,7 +2689,7 @@ namespace Resources {
}
///
- /// 查找类似 变电所受电 的本地化字符串。
+ /// 查找类似 变电所受电 的本地化字符串。
///
internal static string PowerReceived {
get {
@@ -2680,7 +2698,7 @@ namespace Resources {
}
///
- /// 查找类似 问题总数 的本地化字符串。
+ /// 查找类似 问题总数 的本地化字符串。
///
internal static string ProblemTotal {
get {
@@ -2689,7 +2707,7 @@ namespace Resources {
}
///
- /// 查找类似 进度情况 的本地化字符串。
+ /// 查找类似 进度情况 的本地化字符串。
///
internal static string progress {
get {
@@ -2698,7 +2716,7 @@ namespace Resources {
}
///
- /// 查找类似 项目地址 的本地化字符串。
+ /// 查找类似 项目地址 的本地化字符串。
///
internal static string ProjectAddress {
get {
@@ -2707,7 +2725,7 @@ namespace Resources {
}
///
- /// 查找类似 项目清单 的本地化字符串。
+ /// 查找类似 项目清单 的本地化字符串。
///
internal static string ProjectList {
get {
@@ -2716,7 +2734,7 @@ namespace Resources {
}
///
- /// 查找类似 项目名称 的本地化字符串。
+ /// 查找类似 项目名称 的本地化字符串。
///
internal static string ProjectName {
get {
@@ -2725,7 +2743,7 @@ namespace Resources {
}
///
- /// 查找类似 项目概况 的本地化字符串。
+ /// 查找类似 项目概况 的本地化字符串。
///
internal static string ProjectProfile {
get {
@@ -2734,7 +2752,7 @@ namespace Resources {
}
///
- /// 查找类似 项目进度计划 的本地化字符串。
+ /// 查找类似 项目进度计划 的本地化字符串。
///
internal static string ProjectSchedule {
get {
@@ -2743,7 +2761,7 @@ namespace Resources {
}
///
- /// 查找类似 项目统计 的本地化字符串。
+ /// 查找类似 项目统计 的本地化字符串。
///
internal static string ProjectStatistics {
get {
@@ -2752,7 +2770,7 @@ namespace Resources {
}
///
- /// 查找类似 在建项目 的本地化字符串。
+ /// 查找类似 在建项目 的本地化字符串。
///
internal static string ProjectUnderConstruction {
get {
@@ -2761,7 +2779,7 @@ namespace Resources {
}
///
- /// 查找类似 质量管理 的本地化字符串。
+ /// 查找类似 质量管理 的本地化字符串。
///
internal static string QualityManage {
get {
@@ -2770,7 +2788,7 @@ namespace Resources {
}
///
- /// 查找类似 质量概况 的本地化字符串。
+ /// 查找类似 质量概况 的本地化字符串。
///
internal static string QualityProfile {
get {
@@ -2779,7 +2797,7 @@ namespace Resources {
}
///
- /// 查找类似 质量问题整改率 的本地化字符串。
+ /// 查找类似 质量问题整改率 的本地化字符串。
///
internal static string QualityRate {
get {
@@ -2788,7 +2806,7 @@ namespace Resources {
}
///
- /// 查找类似 质量统计 的本地化字符串。
+ /// 查找类似 质量统计 的本地化字符串。
///
internal static string QualityStatistics {
get {
@@ -2797,7 +2815,7 @@ namespace Resources {
}
///
- /// 查找类似 质量培训累计人员 的本地化字符串。
+ /// 查找类似 质量培训累计人员 的本地化字符串。
///
internal static string QualityTraining {
get {
@@ -2806,7 +2824,7 @@ namespace Resources {
}
///
- /// 查找类似 质量预警 的本地化字符串。
+ /// 查找类似 质量预警 的本地化字符串。
///
internal static string QualityWarning {
get {
@@ -2815,7 +2833,7 @@ namespace Resources {
}
///
- /// 查找类似 质量问题统计 的本地化字符串。
+ /// 查找类似 质量问题统计 的本地化字符串。
///
internal static string Quality_problem_statistics {
get {
@@ -2824,7 +2842,7 @@ namespace Resources {
}
///
- /// 查找类似 资质预警 的本地化字符串。
+ /// 查找类似 资质预警 的本地化字符串。
///
internal static string Quawarning {
get {
@@ -2833,7 +2851,7 @@ namespace Resources {
}
///
- /// 查找类似 退出 的本地化字符串。
+ /// 查找类似 退出 的本地化字符串。
///
internal static string quit {
get {
@@ -2842,7 +2860,7 @@ namespace Resources {
}
///
- /// 查找类似 实时视频 的本地化字符串。
+ /// 查找类似 实时视频 的本地化字符串。
///
internal static string RealTimeVideo {
get {
@@ -2851,7 +2869,7 @@ namespace Resources {
}
///
- /// 查找类似 整改数据 的本地化字符串。
+ /// 查找类似 整改数据 的本地化字符串。
///
internal static string RectificationData {
get {
@@ -2860,7 +2878,7 @@ namespace Resources {
}
///
- /// 查找类似 整改率 的本地化字符串。
+ /// 查找类似 整改率 的本地化字符串。
///
internal static string RectificationRate {
get {
@@ -2869,7 +2887,7 @@ namespace Resources {
}
///
- /// 查找类似 刷新 的本地化字符串。
+ /// 查找类似 刷新 的本地化字符串。
///
internal static string Refresh {
get {
@@ -2878,7 +2896,7 @@ namespace Resources {
}
///
- /// 查找类似 刷新本页 的本地化字符串。
+ /// 查找类似 刷新本页 的本地化字符串。
///
internal static string RefreshPage {
get {
@@ -2887,7 +2905,7 @@ namespace Resources {
}
///
- /// 查找类似 较大事故 的本地化字符串。
+ /// 查找类似 较大事故 的本地化字符串。
///
internal static string Relatively_major_accident {
get {
@@ -2896,7 +2914,7 @@ namespace Resources {
}
///
- /// 查找类似 距竣工剩余 的本地化字符串。
+ /// 查找类似 距竣工剩余 的本地化字符串。
///
internal static string RemainingTimeCompletion {
get {
@@ -2905,7 +2923,7 @@ namespace Resources {
}
///
- /// 查找类似 风险管控 的本地化字符串。
+ /// 查找类似 风险管控 的本地化字符串。
///
internal static string RiskControl {
get {
@@ -2914,7 +2932,7 @@ namespace Resources {
}
///
- /// 查找类似 风险预警 的本地化字符串。
+ /// 查找类似 风险预警 的本地化字符串。
///
internal static string RiskEarlyWarning {
get {
@@ -2923,7 +2941,7 @@ namespace Resources {
}
///
- /// 查找类似 安全人工时 的本地化字符串。
+ /// 查找类似 安全人工时 的本地化字符串。
///
internal static string SafeLaborHours {
get {
@@ -2932,7 +2950,7 @@ namespace Resources {
}
///
- /// 查找类似 安全生产 的本地化字符串。
+ /// 查找类似 安全生产 的本地化字符串。
///
internal static string SafeProduction {
get {
@@ -2941,7 +2959,7 @@ namespace Resources {
}
///
- /// 查找类似 安全问题统计 的本地化字符串。
+ /// 查找类似 安全问题统计 的本地化字符串。
///
internal static string SafeProStat {
get {
@@ -2950,7 +2968,7 @@ namespace Resources {
}
///
- /// 查找类似 累计安全人工时 的本地化字符串。
+ /// 查找类似 累计安全人工时 的本地化字符串。
///
internal static string SafetyLaborHours {
get {
@@ -2959,7 +2977,7 @@ namespace Resources {
}
///
- /// 查找类似 安全统计 的本地化字符串。
+ /// 查找类似 安全统计 的本地化字符串。
///
internal static string SafetyStatistics {
get {
@@ -2968,7 +2986,7 @@ namespace Resources {
}
///
- /// 查找类似 安全整改数据 的本地化字符串。
+ /// 查找类似 安全整改数据 的本地化字符串。
///
internal static string Safety_rectification_data {
get {
@@ -2977,7 +2995,7 @@ namespace Resources {
}
///
- /// 查找类似 安监人员数据 的本地化字符串。
+ /// 查找类似 安监人员数据 的本地化字符串。
///
internal static string Safety_supervision_personnel_data {
get {
@@ -2986,7 +3004,7 @@ namespace Resources {
}
///
- /// 查找类似 进度管理 的本地化字符串。
+ /// 查找类似 进度管理 的本地化字符串。
///
internal static string ScheduleManage {
get {
@@ -2995,7 +3013,7 @@ namespace Resources {
}
///
- /// 查找类似 选择语言 的本地化字符串。
+ /// 查找类似 选择语言 的本地化字符串。
///
internal static string SelectLanguage {
get {
@@ -3004,7 +3022,7 @@ namespace Resources {
}
///
- /// 查找类似 劳务数据 的本地化字符串。
+ /// 查找类似 劳务数据 的本地化字符串。
///
internal static string ServiceData {
get {
@@ -3013,7 +3031,7 @@ namespace Resources {
}
///
- /// 查找类似 设置 的本地化字符串。
+ /// 查找类似 设置 的本地化字符串。
///
internal static string Settings {
get {
@@ -3022,7 +3040,7 @@ namespace Resources {
}
///
- /// 查找类似 停工 的本地化字符串。
+ /// 查找类似 停工 的本地化字符串。
///
internal static string ShutDown {
get {
@@ -3031,7 +3049,7 @@ namespace Resources {
}
///
- /// 查找类似 注销 的本地化字符串。
+ /// 查找类似 注销 的本地化字符串。
///
internal static string SignOUT {
get {
@@ -3040,7 +3058,7 @@ namespace Resources {
}
///
- /// 查找类似 开工时间 的本地化字符串。
+ /// 查找类似 开工时间 的本地化字符串。
///
internal static string Start_time {
get {
@@ -3049,7 +3067,7 @@ namespace Resources {
}
///
- /// 查找类似 分包管理 的本地化字符串。
+ /// 查找类似 分包管理 的本地化字符串。
///
internal static string SubManagement {
get {
@@ -3058,7 +3076,7 @@ namespace Resources {
}
///
- /// 查找类似 超危大工程 的本地化字符串。
+ /// 查找类似 超危大工程 的本地化字符串。
///
internal static string SuperDangerousProject {
get {
@@ -3067,7 +3085,7 @@ namespace Resources {
}
///
- /// 查找类似 监理单位 的本地化字符串。
+ /// 查找类似 监理单位 的本地化字符串。
///
internal static string SupervisionUnit {
get {
@@ -3076,7 +3094,7 @@ namespace Resources {
}
///
- /// 查找类似 切换首页 的本地化字符串。
+ /// 查找类似 切换首页 的本地化字符串。
///
internal static string SwitchHomePage {
get {
@@ -3085,7 +3103,7 @@ namespace Resources {
}
///
- /// 查找类似 系统菜单 的本地化字符串。
+ /// 查找类似 系统菜单 的本地化字符串。
///
internal static string SystemMenu {
get {
@@ -3094,7 +3112,7 @@ namespace Resources {
}
///
- /// 查找类似 智慧施工管理信息系统 的本地化字符串。
+ /// 查找类似 智慧施工管理信息系统 的本地化字符串。
///
internal static string SystemName {
get {
@@ -3103,7 +3121,7 @@ namespace Resources {
}
///
- /// 查找类似 温度 的本地化字符串。
+ /// 查找类似 温度 的本地化字符串。
///
internal static string temperature {
get {
@@ -3112,7 +3130,7 @@ namespace Resources {
}
///
- /// 查找类似 试车管理 的本地化字符串。
+ /// 查找类似 试车管理 的本地化字符串。
///
internal static string TestManagement {
get {
@@ -3121,7 +3139,7 @@ namespace Resources {
}
///
- /// 查找类似 竣工时间 的本地化字符串。
+ /// 查找类似 竣工时间 的本地化字符串。
///
internal static string TimeCompletion {
get {
@@ -3130,7 +3148,7 @@ namespace Resources {
}
///
- /// 查找类似 待办事项 的本地化字符串。
+ /// 查找类似 待办事项 的本地化字符串。
///
internal static string TodoList {
get {
@@ -3139,7 +3157,7 @@ namespace Resources {
}
///
- /// 查找类似 总计 的本地化字符串。
+ /// 查找类似 总计 的本地化字符串。
///
internal static string total {
get {
@@ -3148,7 +3166,7 @@ namespace Resources {
}
///
- /// 查找类似 合同总工期 的本地化字符串。
+ /// 查找类似 合同总工期 的本地化字符串。
///
internal static string TotalContractDuration {
get {
@@ -3157,7 +3175,7 @@ namespace Resources {
}
///
- /// 查找类似 待整改 的本地化字符串。
+ /// 查找类似 待整改 的本地化字符串。
///
internal static string To_be_rectified {
get {
@@ -3166,7 +3184,7 @@ namespace Resources {
}
///
- /// 查找类似 移交管理 的本地化字符串。
+ /// 查找类似 移交管理 的本地化字符串。
///
internal static string TransferManagement {
get {
@@ -3175,7 +3193,7 @@ namespace Resources {
}
///
- /// 查找类似 未完成 的本地化字符串。
+ /// 查找类似 未完成 的本地化字符串。
///
internal static string uncompleted {
get {
@@ -3184,7 +3202,7 @@ namespace Resources {
}
///
- /// 查找类似 未整改数 的本地化字符串。
+ /// 查找类似 未整改数 的本地化字符串。
///
internal static string Uncorrected_number {
get {
@@ -3193,7 +3211,7 @@ namespace Resources {
}
///
- /// 查找类似 在建 的本地化字符串。
+ /// 查找类似 在建 的本地化字符串。
///
internal static string UnderConstruction {
get {
@@ -3202,7 +3220,7 @@ namespace Resources {
}
///
- /// 查找类似 合格 的本地化字符串。
+ /// 查找类似 合格 的本地化字符串。
///
internal static string Up_to_standard {
get {
@@ -3211,7 +3229,7 @@ namespace Resources {
}
///
- /// 查找类似 用户 的本地化字符串。
+ /// 查找类似 用户 的本地化字符串。
///
internal static string user {
get {
@@ -3220,7 +3238,7 @@ namespace Resources {
}
///
- /// 查找类似 视频监控 的本地化字符串。
+ /// 查找类似 视频监控 的本地化字符串。
///
internal static string VideoSurveillance {
get {
@@ -3229,7 +3247,7 @@ namespace Resources {
}
///
- /// 查找类似 焊接管理 的本地化字符串。
+ /// 查找类似 焊接管理 的本地化字符串。
///
internal static string WeldingManage {
get {
@@ -3238,7 +3256,7 @@ namespace Resources {
}
///
- /// 查找类似 风速 的本地化字符串。
+ /// 查找类似 风速 的本地化字符串。
///
internal static string WindSpeed {
get {
@@ -3247,7 +3265,7 @@ namespace Resources {
}
///
- /// 查找类似 作业许可 的本地化字符串。
+ /// 查找类似 作业许可 的本地化字符串。
///
internal static string WorkPermit {
get {
@@ -3256,7 +3274,7 @@ namespace Resources {
}
///
- /// 查找类似 作业人员总数 的本地化字符串。
+ /// 查找类似 作业人员总数 的本地化字符串。
///
internal static string WorkPersonnel {
get {
diff --git a/SGGL/FineUIPro.Web/JDGL/Check/WeekItemEdit.aspx.cs b/SGGL/FineUIPro.Web/JDGL/Check/WeekItemEdit.aspx.cs
index 4e835fbd..9e7ed113 100644
--- a/SGGL/FineUIPro.Web/JDGL/Check/WeekItemEdit.aspx.cs
+++ b/SGGL/FineUIPro.Web/JDGL/Check/WeekItemEdit.aspx.cs
@@ -80,7 +80,7 @@ namespace FineUIPro.Web.JDGL.Check
}
else
{
- this.txtWeekNo.Text = "0";
+ this.txtWeekNo.Text = "1";
//this.txtStartDate.Text = DateTime.Now.ToString("yyyy-MM-dd");
//this.txtEndDate.Text = DateTime.Now.AddDays(6).ToString("yyyy-MM-dd");
}
diff --git a/SGGL/FineUIPro.Web/PZHGL/GJSX/GJSXFind.aspx.cs b/SGGL/FineUIPro.Web/PZHGL/GJSX/GJSXFind.aspx.cs
index 3501aa93..5ebbdec8 100644
--- a/SGGL/FineUIPro.Web/PZHGL/GJSX/GJSXFind.aspx.cs
+++ b/SGGL/FineUIPro.Web/PZHGL/GJSX/GJSXFind.aspx.cs
@@ -1,4 +1,5 @@
using BLL;
+using NPOI.SS.UserModel;
using NPOI.SS.Util;
using System;
using System.Collections.Generic;
@@ -83,7 +84,7 @@ namespace FineUIPro.Web.PZHGL.GJSX
else if (state == "2" || state == "3")
{
Grid1.Rows[i].CellCssClasses[6] = "blue";
- }
+ }
else if (state == "4")
{
Grid1.Rows[i].CellCssClasses[6] = "red";
@@ -496,7 +497,7 @@ namespace FineUIPro.Web.PZHGL.GJSX
int i = 2;
for (int j = 0; j < tb.Rows.Count; j++)
{
- string state = tb.Rows[j]["State"].ToString();
+ string state = tb.Rows[j]["State"].ToString().Trim();
string createDate = string.Empty;
if (tb.Rows[j]["CreateDate"] != DBNull.Value)
{
@@ -534,7 +535,23 @@ namespace FineUIPro.Web.PZHGL.GJSX
cell.CellStyle = cellStyle;
cell.SetCellValue(tb.Rows[j]["GJSXTypeName"].ToString());
cell = row.CreateCell(6);
- cell.CellStyle = cellStyle;
+ var stateCellStyle = cellStyle;
+ //if (state == "0")
+ //{
+ // stateCellStyle.FillForegroundColor = IndexedColors.Green.Index;
+ // //stateCellStyle.FillBackgroundColor = IndexedColors.Green.Index;
+ //}
+ //else if (state == "2" || state == "3")
+ //{
+ // //stateCellStyle.FillForegroundColor = IndexedColors.Blue.Index;
+ // stateCellStyle.FillBackgroundColor = IndexedColors.Blue.Index;
+ //}
+ //else if (state == "4")
+ //{
+ // //stateCellStyle.FillForegroundColor = IndexedColors.Red.Index;
+ // stateCellStyle.FillBackgroundColor = IndexedColors.Red.Index;
+ //}
+ cell.CellStyle = stateCellStyle;
cell.SetCellValue(tb.Rows[j]["StateStr"].ToString());
cell = row.CreateCell(7);
cell.CellStyle = cellStyle;
diff --git a/SGGL/FineUIPro.Web/common/mainMenu_PGJSX.aspx.cs b/SGGL/FineUIPro.Web/common/mainMenu_PGJSX.aspx.cs
index 4ff847d3..ea5cd4d7 100644
--- a/SGGL/FineUIPro.Web/common/mainMenu_PGJSX.aspx.cs
+++ b/SGGL/FineUIPro.Web/common/mainMenu_PGJSX.aspx.cs
@@ -192,7 +192,7 @@ namespace FineUIPro.Web
{
Model.SGGLDB db = Funs.DB;
var gjsxTypes = BLL.GJSXTypeService.GetGJSXTypeList();
- var allItems = from x in Funs.DB.GJSX
+ var allItems = from x in db.GJSX
where x.ProjectId == this.ProjectId && x.State != "1" && (x.CloseDate ?? DateTime.Now) > Convert.ToDateTime(x.CompleteDate)
select x;
StringBuilder sb = new StringBuilder();
diff --git a/SGGL/FineUIPro.Web/common/mainProject2.aspx b/SGGL/FineUIPro.Web/common/mainProject2.aspx
index 1e02b8e6..30f2e523 100644
--- a/SGGL/FineUIPro.Web/common/mainProject2.aspx
+++ b/SGGL/FineUIPro.Web/common/mainProject2.aspx
@@ -1,4 +1,4 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="mainProject2.aspx.cs" Inherits="FineUIPro.Web.common.mainProject2" Async="true" %>
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="mainProject2.aspx.cs" Inherits="FineUIPro.Web.common.mainProject2" Async="true" %>
@@ -11,13 +11,13 @@
-
+
-
+