岗位合并清理、班前会数据同步、

This commit is contained in:
2026-02-27 11:05:35 +08:00
parent d5fe6816ce
commit 73511d2e03
28 changed files with 1911 additions and 225 deletions
+72
View File
@@ -26995,6 +26995,10 @@ namespace Model
private string _AQMPwd;
private string _SubjectUnit;
private string _SubjectProject;
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
@@ -27719,6 +27723,10 @@ namespace Model
partial void OnAQMAccountChanged();
partial void OnAQMPwdChanging(string value);
partial void OnAQMPwdChanged();
partial void OnSubjectUnitChanging(string value);
partial void OnSubjectUnitChanged();
partial void OnSubjectProjectChanging(string value);
partial void OnSubjectProjectChanged();
#endregion
public Base_Project()
@@ -29044,6 +29052,46 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubjectUnit", DbType="NVarChar(50)")]
public string SubjectUnit
{
get
{
return this._SubjectUnit;
}
set
{
if ((this._SubjectUnit != value))
{
this.OnSubjectUnitChanging(value);
this.SendPropertyChanging();
this._SubjectUnit = value;
this.SendPropertyChanged("SubjectUnit");
this.OnSubjectUnitChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubjectProject", DbType="NVarChar(50)")]
public string SubjectProject
{
get
{
return this._SubjectProject;
}
set
{
if ((this._SubjectProject != value))
{
this.OnSubjectProjectChanging(value);
this.SendPropertyChanging();
this._SubjectProject = value;
this.SendPropertyChanged("SubjectProject");
this.OnSubjectProjectChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Base_Project", Storage="_Accident_AccidentHandle", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
{
@@ -273613,6 +273661,8 @@ namespace Model
private System.Nullable<int> _AttentPersonNum;
private string _Remark;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Base_Unit> _Base_Unit;
@@ -273657,6 +273707,8 @@ namespace Model
partial void OnTeamGroupIdChanged();
partial void OnAttentPersonNumChanging(System.Nullable<int> value);
partial void OnAttentPersonNumChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
#endregion
public Meeting_ClassMeeting()
@@ -274004,6 +274056,26 @@ namespace Model
}
}
[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();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Meeting_ClassMeeting_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{