This commit is contained in:
parent
75041220af
commit
4485f91da6
|
@ -189,7 +189,6 @@ namespace BLL
|
||||||
x.HazardRegisterId == hazardRegister.HazardRegisterId);
|
x.HazardRegisterId == hazardRegister.HazardRegisterId);
|
||||||
if (isUpdate != null)
|
if (isUpdate != null)
|
||||||
{
|
{
|
||||||
isUpdate.CheckTime = DateTime.Now;
|
|
||||||
isUpdate.ReviewedManId = hazardRegister.ReviewedManId;
|
isUpdate.ReviewedManId = hazardRegister.ReviewedManId;
|
||||||
isUpdate.RegisterDef = hazardRegister.RegisterDef;
|
isUpdate.RegisterDef = hazardRegister.RegisterDef;
|
||||||
isUpdate.Requirements = hazardRegister.Requirements;
|
isUpdate.Requirements = hazardRegister.Requirements;
|
||||||
|
|
|
@ -468017,6 +468017,8 @@ namespace Model
|
||||||
|
|
||||||
private string _States;
|
private string _States;
|
||||||
|
|
||||||
|
private string _ReviewedManId;
|
||||||
|
|
||||||
private string _IsEffective;
|
private string _IsEffective;
|
||||||
|
|
||||||
private string _ResponsibleMan;
|
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)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsEffective", DbType="Char(1)")]
|
||||||
public string IsEffective
|
public string IsEffective
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue