diff --git a/SUBQHSE/BLL/Customization/ZJ/API/APIUnitHazardRegisterService.cs b/SUBQHSE/BLL/Customization/ZJ/API/APIUnitHazardRegisterService.cs index 2a39737..77c747b 100644 --- a/SUBQHSE/BLL/Customization/ZJ/API/APIUnitHazardRegisterService.cs +++ b/SUBQHSE/BLL/Customization/ZJ/API/APIUnitHazardRegisterService.cs @@ -189,7 +189,6 @@ namespace BLL x.HazardRegisterId == hazardRegister.HazardRegisterId); if (isUpdate != null) { - isUpdate.CheckTime = DateTime.Now; isUpdate.ReviewedManId = hazardRegister.ReviewedManId; isUpdate.RegisterDef = hazardRegister.RegisterDef; isUpdate.Requirements = hazardRegister.Requirements; diff --git a/SUBQHSE/Model/Model.cs b/SUBQHSE/Model/Model.cs index 1097d5c..06389d2 100644 --- a/SUBQHSE/Model/Model.cs +++ b/SUBQHSE/Model/Model.cs @@ -468017,6 +468017,8 @@ namespace Model private string _States; + private string _ReviewedManId; + private string _IsEffective; private string _ResponsibleMan; @@ -468387,6 +468389,22 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReviewedManId", DbType="NVarChar(2000)")] + public string ReviewedManId + { + get + { + return this._ReviewedManId; + } + set + { + if ((this._ReviewedManId != value)) + { + this._ReviewedManId = value; + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsEffective", DbType="Char(1)")] public string IsEffective {