人员考试

This commit is contained in:
2023-02-23 18:49:20 +08:00
parent d3116638f6
commit 8eca8fb237
14 changed files with 1537 additions and 76 deletions
+313
View File
@@ -1823,6 +1823,9 @@ namespace Model
partial void InsertSeDin_MonthReportFlowOperate(SeDin_MonthReportFlowOperate instance);
partial void UpdateSeDin_MonthReportFlowOperate(SeDin_MonthReportFlowOperate instance);
partial void DeleteSeDin_MonthReportFlowOperate(SeDin_MonthReportFlowOperate instance);
partial void InsertSitePerson_AskForLeave(SitePerson_AskForLeave instance);
partial void UpdateSitePerson_AskForLeave(SitePerson_AskForLeave instance);
partial void DeleteSitePerson_AskForLeave(SitePerson_AskForLeave instance);
partial void InsertSitePerson_Checking(SitePerson_Checking instance);
partial void UpdateSitePerson_Checking(SitePerson_Checking instance);
partial void DeleteSitePerson_Checking(SitePerson_Checking instance);
@@ -7110,6 +7113,14 @@ namespace Model
}
}
public System.Data.Linq.Table<SitePerson_AskForLeave> SitePerson_AskForLeave
{
get
{
return this.GetTable<SitePerson_AskForLeave>();
}
}
public System.Data.Linq.Table<SitePerson_Checking> SitePerson_Checking
{
get
@@ -289395,6 +289406,308 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.SitePerson_AskForLeave")]
public partial class SitePerson_AskForLeave : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _LeaveId;
private string _PersonId;
private string _PersonName;
private string _UnitId;
private string _ProjectId;
private string _Reason;
private System.Nullable<System.DateTime> _DateA;
private System.Nullable<System.DateTime> _DateZ;
private System.Nullable<System.DateTime> _CreateDate;
private string _CreateMan;
private string _Remark;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnLeaveIdChanging(string value);
partial void OnLeaveIdChanged();
partial void OnPersonIdChanging(string value);
partial void OnPersonIdChanged();
partial void OnPersonNameChanging(string value);
partial void OnPersonNameChanged();
partial void OnUnitIdChanging(string value);
partial void OnUnitIdChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnReasonChanging(string value);
partial void OnReasonChanged();
partial void OnDateAChanging(System.Nullable<System.DateTime> value);
partial void OnDateAChanged();
partial void OnDateZChanging(System.Nullable<System.DateTime> value);
partial void OnDateZChanged();
partial void OnCreateDateChanging(System.Nullable<System.DateTime> value);
partial void OnCreateDateChanged();
partial void OnCreateManChanging(string value);
partial void OnCreateManChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
#endregion
public SitePerson_AskForLeave()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_LeaveId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string LeaveId
{
get
{
return this._LeaveId;
}
set
{
if ((this._LeaveId != value))
{
this.OnLeaveIdChanging(value);
this.SendPropertyChanging();
this._LeaveId = value;
this.SendPropertyChanged("LeaveId");
this.OnLeaveIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PersonId", DbType="NVarChar(50)")]
public string PersonId
{
get
{
return this._PersonId;
}
set
{
if ((this._PersonId != value))
{
this.OnPersonIdChanging(value);
this.SendPropertyChanging();
this._PersonId = value;
this.SendPropertyChanged("PersonId");
this.OnPersonIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PersonName", DbType="NVarChar(50)")]
public string PersonName
{
get
{
return this._PersonName;
}
set
{
if ((this._PersonName != value))
{
this.OnPersonNameChanging(value);
this.SendPropertyChanging();
this._PersonName = value;
this.SendPropertyChanged("PersonName");
this.OnPersonNameChanged();
}
}
}
[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="_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="_Reason", DbType="NVarChar(500)")]
public string Reason
{
get
{
return this._Reason;
}
set
{
if ((this._Reason != value))
{
this.OnReasonChanging(value);
this.SendPropertyChanging();
this._Reason = value;
this.SendPropertyChanged("Reason");
this.OnReasonChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DateA", DbType="DateTime")]
public System.Nullable<System.DateTime> DateA
{
get
{
return this._DateA;
}
set
{
if ((this._DateA != value))
{
this.OnDateAChanging(value);
this.SendPropertyChanging();
this._DateA = value;
this.SendPropertyChanged("DateA");
this.OnDateAChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DateZ", DbType="DateTime")]
public System.Nullable<System.DateTime> DateZ
{
get
{
return this._DateZ;
}
set
{
if ((this._DateZ != value))
{
this.OnDateZChanging(value);
this.SendPropertyChanging();
this._DateZ = value;
this.SendPropertyChanged("DateZ");
this.OnDateZChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateDate", DbType="DateTime")]
public System.Nullable<System.DateTime> CreateDate
{
get
{
return this._CreateDate;
}
set
{
if ((this._CreateDate != value))
{
this.OnCreateDateChanging(value);
this.SendPropertyChanging();
this._CreateDate = value;
this.SendPropertyChanged("CreateDate");
this.OnCreateDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateMan", DbType="NVarChar(50)")]
public string CreateMan
{
get
{
return this._CreateMan;
}
set
{
if ((this._CreateMan != value))
{
this.OnCreateManChanging(value);
this.SendPropertyChanging();
this._CreateMan = value;
this.SendPropertyChanged("CreateMan");
this.OnCreateManChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(500)")]
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();
}
}
}
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.SitePerson_Checking")]
public partial class SitePerson_Checking : INotifyPropertyChanging, INotifyPropertyChanged
{