This commit is contained in:
geh 2025-09-16 20:24:45 +08:00
parent 75041220af
commit 4485f91da6
2 changed files with 18 additions and 1 deletions

View File

@ -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;

View File

@ -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
{