施工交底补充交底人数

This commit is contained in:
2025-06-14 01:42:47 +08:00
parent 0941b1f159
commit ee5bd9ef21
15 changed files with 132 additions and 34 deletions
+24
View File
@@ -88641,6 +88641,8 @@ namespace Model
private System.Nullable<int> _RemarkCode;
private System.Nullable<int> _DisclosurePersonNum;
private EntityRef<Base_CNProfessional> _Base_CNProfessional;
private EntityRef<Base_Project> _Base_Project;
@@ -88679,6 +88681,8 @@ namespace Model
partial void OnCompileDateChanged();
partial void OnRemarkCodeChanging(System.Nullable<int> value);
partial void OnRemarkCodeChanged();
partial void OnDisclosurePersonNumChanging(System.Nullable<int> value);
partial void OnDisclosurePersonNumChanged();
#endregion
public Comprehensive_ConTechnologyDisclosure()
@@ -88966,6 +88970,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DisclosurePersonNum", DbType="Int")]
public System.Nullable<int> DisclosurePersonNum
{
get
{
return this._DisclosurePersonNum;
}
set
{
if ((this._DisclosurePersonNum != value))
{
this.OnDisclosurePersonNumChanging(value);
this.SendPropertyChanging();
this._DisclosurePersonNum = value;
this.SendPropertyChanged("DisclosurePersonNum");
this.OnDisclosurePersonNumChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Comprehensive_ConTechnologyDisclosure_Base_CNProfessional", Storage="_Base_CNProfessional", ThisKey="CNProfessionalId", OtherKey="CNProfessionalId", IsForeignKey=true)]
public Base_CNProfessional Base_CNProfessional
{