安全不符合项清单

This commit is contained in:
2026-06-04 10:14:15 +08:00
parent a43a77a180
commit 4e579c7a68
32 changed files with 4611 additions and 97 deletions
+721
View File
@@ -536,6 +536,9 @@ namespace Model
partial void InsertCheck_ViolationPerson(Check_ViolationPerson instance);
partial void UpdateCheck_ViolationPerson(Check_ViolationPerson instance);
partial void DeleteCheck_ViolationPerson(Check_ViolationPerson instance);
partial void InsertCheckProblem_Safety(CheckProblem_Safety instance);
partial void UpdateCheckProblem_Safety(CheckProblem_Safety instance);
partial void DeleteCheckProblem_Safety(CheckProblem_Safety instance);
partial void InsertCL_MatchingM(CL_MatchingM instance);
partial void UpdateCL_MatchingM(CL_MatchingM instance);
partial void DeleteCL_MatchingM(CL_MatchingM instance);
@@ -4122,6 +4125,14 @@ namespace Model
}
}
public System.Data.Linq.Table<CheckProblem_Safety> CheckProblem_Safety
{
get
{
return this.GetTable<CheckProblem_Safety>();
}
}
public System.Data.Linq.Table<CL_MatchingM> CL_MatchingM
{
get
@@ -88019,6 +88030,716 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.CheckProblem_Safety")]
public partial class CheckProblem_Safety : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _CheckId;
private string _UnitId;
private string _UnitName;
private string _ProjectId;
private string _ProjectName;
private int _State;
private string _Address;
private string _Description;
private string _UnitType;
private string _AssemblyName;
private string _CheckTeamUser;
private System.DateTime _CheckDate;
private System.Nullable<System.DateTime> _LimitDate;
private System.Nullable<System.DateTime> _CloseTime;
private string _RectificationUserId;
private string _RectificationUserName;
private string _PMUserId;
private string _PMUserName;
private string _ClassifyId;
private string _ClassifyItemId;
private string _NatureId;
private string _NatureItemId;
private string _AttachUrl;
private string _RectificationUrl;
private string _Remark;
private string _CompileMan;
private string _CompileManName;
private System.DateTime _CompileDate;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnCheckIdChanging(string value);
partial void OnCheckIdChanged();
partial void OnUnitIdChanging(string value);
partial void OnUnitIdChanged();
partial void OnUnitNameChanging(string value);
partial void OnUnitNameChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnProjectNameChanging(string value);
partial void OnProjectNameChanged();
partial void OnStateChanging(int value);
partial void OnStateChanged();
partial void OnAddressChanging(string value);
partial void OnAddressChanged();
partial void OnDescriptionChanging(string value);
partial void OnDescriptionChanged();
partial void OnUnitTypeChanging(string value);
partial void OnUnitTypeChanged();
partial void OnAssemblyNameChanging(string value);
partial void OnAssemblyNameChanged();
partial void OnCheckTeamUserChanging(string value);
partial void OnCheckTeamUserChanged();
partial void OnCheckDateChanging(System.DateTime value);
partial void OnCheckDateChanged();
partial void OnLimitDateChanging(System.Nullable<System.DateTime> value);
partial void OnLimitDateChanged();
partial void OnCloseTimeChanging(System.Nullable<System.DateTime> value);
partial void OnCloseTimeChanged();
partial void OnRectificationUserIdChanging(string value);
partial void OnRectificationUserIdChanged();
partial void OnRectificationUserNameChanging(string value);
partial void OnRectificationUserNameChanged();
partial void OnPMUserIdChanging(string value);
partial void OnPMUserIdChanged();
partial void OnPMUserNameChanging(string value);
partial void OnPMUserNameChanged();
partial void OnClassifyIdChanging(string value);
partial void OnClassifyIdChanged();
partial void OnClassifyItemIdChanging(string value);
partial void OnClassifyItemIdChanged();
partial void OnNatureIdChanging(string value);
partial void OnNatureIdChanged();
partial void OnNatureItemIdChanging(string value);
partial void OnNatureItemIdChanged();
partial void OnAttachUrlChanging(string value);
partial void OnAttachUrlChanged();
partial void OnRectificationUrlChanging(string value);
partial void OnRectificationUrlChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
partial void OnCompileManChanging(string value);
partial void OnCompileManChanged();
partial void OnCompileManNameChanging(string value);
partial void OnCompileManNameChanged();
partial void OnCompileDateChanging(System.DateTime value);
partial void OnCompileDateChanged();
#endregion
public CheckProblem_Safety()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string CheckId
{
get
{
return this._CheckId;
}
set
{
if ((this._CheckId != value))
{
this.OnCheckIdChanging(value);
this.SendPropertyChanging();
this._CheckId = value;
this.SendPropertyChanged("CheckId");
this.OnCheckIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitId", DbType="NVarChar(50)")]
public string UnitId
{
get
{
return this._UnitId;
}
set
{
if ((this._UnitId != value))
{
this.OnUnitIdChanging(value);
this.SendPropertyChanging();
this._UnitId = value;
this.SendPropertyChanged("UnitId");
this.OnUnitIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitName", DbType="NVarChar(50)")]
public string UnitName
{
get
{
return this._UnitName;
}
set
{
if ((this._UnitName != value))
{
this.OnUnitNameChanging(value);
this.SendPropertyChanging();
this._UnitName = value;
this.SendPropertyChanged("UnitName");
this.OnUnitNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
public string ProjectId
{
get
{
return this._ProjectId;
}
set
{
if ((this._ProjectId != value))
{
this.OnProjectIdChanging(value);
this.SendPropertyChanging();
this._ProjectId = value;
this.SendPropertyChanged("ProjectId");
this.OnProjectIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectName", DbType="NVarChar(50)")]
public string ProjectName
{
get
{
return this._ProjectName;
}
set
{
if ((this._ProjectName != value))
{
this.OnProjectNameChanging(value);
this.SendPropertyChanging();
this._ProjectName = value;
this.SendPropertyChanged("ProjectName");
this.OnProjectNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_State", DbType="Int NOT NULL")]
public int State
{
get
{
return this._State;
}
set
{
if ((this._State != value))
{
this.OnStateChanging(value);
this.SendPropertyChanging();
this._State = value;
this.SendPropertyChanged("State");
this.OnStateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(200)")]
public string Address
{
get
{
return this._Address;
}
set
{
if ((this._Address != value))
{
this.OnAddressChanging(value);
this.SendPropertyChanging();
this._Address = value;
this.SendPropertyChanged("Address");
this.OnAddressChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Description", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string Description
{
get
{
return this._Description;
}
set
{
if ((this._Description != value))
{
this.OnDescriptionChanging(value);
this.SendPropertyChanging();
this._Description = value;
this.SendPropertyChanged("Description");
this.OnDescriptionChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitType", DbType="NVarChar(20)")]
public string UnitType
{
get
{
return this._UnitType;
}
set
{
if ((this._UnitType != value))
{
this.OnUnitTypeChanging(value);
this.SendPropertyChanging();
this._UnitType = value;
this.SendPropertyChanged("UnitType");
this.OnUnitTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AssemblyName", DbType="NVarChar(100)")]
public string AssemblyName
{
get
{
return this._AssemblyName;
}
set
{
if ((this._AssemblyName != value))
{
this.OnAssemblyNameChanging(value);
this.SendPropertyChanging();
this._AssemblyName = value;
this.SendPropertyChanged("AssemblyName");
this.OnAssemblyNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckTeamUser", DbType="NVarChar(500)")]
public string CheckTeamUser
{
get
{
return this._CheckTeamUser;
}
set
{
if ((this._CheckTeamUser != value))
{
this.OnCheckTeamUserChanging(value);
this.SendPropertyChanging();
this._CheckTeamUser = value;
this.SendPropertyChanged("CheckTeamUser");
this.OnCheckTeamUserChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckDate", DbType="DateTime NOT NULL")]
public System.DateTime CheckDate
{
get
{
return this._CheckDate;
}
set
{
if ((this._CheckDate != value))
{
this.OnCheckDateChanging(value);
this.SendPropertyChanging();
this._CheckDate = value;
this.SendPropertyChanged("CheckDate");
this.OnCheckDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_LimitDate", DbType="DateTime")]
public System.Nullable<System.DateTime> LimitDate
{
get
{
return this._LimitDate;
}
set
{
if ((this._LimitDate != value))
{
this.OnLimitDateChanging(value);
this.SendPropertyChanging();
this._LimitDate = value;
this.SendPropertyChanged("LimitDate");
this.OnLimitDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CloseTime", DbType="DateTime")]
public System.Nullable<System.DateTime> CloseTime
{
get
{
return this._CloseTime;
}
set
{
if ((this._CloseTime != value))
{
this.OnCloseTimeChanging(value);
this.SendPropertyChanging();
this._CloseTime = value;
this.SendPropertyChanged("CloseTime");
this.OnCloseTimeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RectificationUserId", DbType="NVarChar(50)")]
public string RectificationUserId
{
get
{
return this._RectificationUserId;
}
set
{
if ((this._RectificationUserId != value))
{
this.OnRectificationUserIdChanging(value);
this.SendPropertyChanging();
this._RectificationUserId = value;
this.SendPropertyChanged("RectificationUserId");
this.OnRectificationUserIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RectificationUserName", DbType="NVarChar(100)")]
public string RectificationUserName
{
get
{
return this._RectificationUserName;
}
set
{
if ((this._RectificationUserName != value))
{
this.OnRectificationUserNameChanging(value);
this.SendPropertyChanging();
this._RectificationUserName = value;
this.SendPropertyChanged("RectificationUserName");
this.OnRectificationUserNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PMUserId", DbType="NVarChar(50)")]
public string PMUserId
{
get
{
return this._PMUserId;
}
set
{
if ((this._PMUserId != value))
{
this.OnPMUserIdChanging(value);
this.SendPropertyChanging();
this._PMUserId = value;
this.SendPropertyChanged("PMUserId");
this.OnPMUserIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PMUserName", DbType="NVarChar(100)")]
public string PMUserName
{
get
{
return this._PMUserName;
}
set
{
if ((this._PMUserName != value))
{
this.OnPMUserNameChanging(value);
this.SendPropertyChanging();
this._PMUserName = value;
this.SendPropertyChanged("PMUserName");
this.OnPMUserNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ClassifyId", DbType="NVarChar(50)")]
public string ClassifyId
{
get
{
return this._ClassifyId;
}
set
{
if ((this._ClassifyId != value))
{
this.OnClassifyIdChanging(value);
this.SendPropertyChanging();
this._ClassifyId = value;
this.SendPropertyChanged("ClassifyId");
this.OnClassifyIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ClassifyItemId", DbType="NVarChar(50)")]
public string ClassifyItemId
{
get
{
return this._ClassifyItemId;
}
set
{
if ((this._ClassifyItemId != value))
{
this.OnClassifyItemIdChanging(value);
this.SendPropertyChanging();
this._ClassifyItemId = value;
this.SendPropertyChanged("ClassifyItemId");
this.OnClassifyItemIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_NatureId", DbType="NVarChar(50)")]
public string NatureId
{
get
{
return this._NatureId;
}
set
{
if ((this._NatureId != value))
{
this.OnNatureIdChanging(value);
this.SendPropertyChanging();
this._NatureId = value;
this.SendPropertyChanged("NatureId");
this.OnNatureIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_NatureItemId", DbType="NVarChar(50)")]
public string NatureItemId
{
get
{
return this._NatureItemId;
}
set
{
if ((this._NatureItemId != value))
{
this.OnNatureItemIdChanging(value);
this.SendPropertyChanging();
this._NatureItemId = value;
this.SendPropertyChanged("NatureItemId");
this.OnNatureItemIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttachUrl", DbType="NVarChar(1000)")]
public string AttachUrl
{
get
{
return this._AttachUrl;
}
set
{
if ((this._AttachUrl != value))
{
this.OnAttachUrlChanging(value);
this.SendPropertyChanging();
this._AttachUrl = value;
this.SendPropertyChanged("AttachUrl");
this.OnAttachUrlChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RectificationUrl", DbType="NVarChar(1000)")]
public string RectificationUrl
{
get
{
return this._RectificationUrl;
}
set
{
if ((this._RectificationUrl != value))
{
this.OnRectificationUrlChanging(value);
this.SendPropertyChanging();
this._RectificationUrl = value;
this.SendPropertyChanged("RectificationUrl");
this.OnRectificationUrlChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(50)")]
public string Remark
{
get
{
return this._Remark;
}
set
{
if ((this._Remark != value))
{
this.OnRemarkChanging(value);
this.SendPropertyChanging();
this._Remark = value;
this.SendPropertyChanged("Remark");
this.OnRemarkChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50)")]
public string CompileMan
{
get
{
return this._CompileMan;
}
set
{
if ((this._CompileMan != value))
{
this.OnCompileManChanging(value);
this.SendPropertyChanging();
this._CompileMan = value;
this.SendPropertyChanged("CompileMan");
this.OnCompileManChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileManName", DbType="NVarChar(100)")]
public string CompileManName
{
get
{
return this._CompileManName;
}
set
{
if ((this._CompileManName != value))
{
this.OnCompileManNameChanging(value);
this.SendPropertyChanging();
this._CompileManName = value;
this.SendPropertyChanged("CompileManName");
this.OnCompileManNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileDate", DbType="DateTime NOT NULL")]
public System.DateTime CompileDate
{
get
{
return this._CompileDate;
}
set
{
if ((this._CompileDate != value))
{
this.OnCompileDateChanging(value);
this.SendPropertyChanging();
this._CompileDate = value;
this.SendPropertyChanged("CompileDate");
this.OnCompileDateChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void SendPropertyChanging()
{
if ((this.PropertyChanging != null))
{
this.PropertyChanging(this, emptyChangingEventArgs);
}
}
protected virtual void SendPropertyChanged(String propertyName)
{
if ((this.PropertyChanged != null))
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.CL_MatchingM")]
public partial class CL_MatchingM : INotifyPropertyChanging, INotifyPropertyChanged
{