This commit is contained in:
parent
75041220af
commit
4485f91da6
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue