修改质量接口

This commit is contained in:
2023-03-17 09:59:48 +08:00
parent eef27faf84
commit 4a3fb76c8c
12 changed files with 962 additions and 74 deletions
+48
View File
@@ -127544,6 +127544,10 @@ namespace Model
private System.Nullable<System.DateTime> _CompileDate;
private string _AttachUrlModel;
private string _AttachUrl;
private EntityRef<Base_CompanyModel> _Base_CompanyModel;
private EntityRef<Base_Project> _Base_Project;
@@ -127566,6 +127570,10 @@ namespace Model
partial void OnCompileManChanged();
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
partial void OnCompileDateChanged();
partial void OnAttachUrlModelChanging(string value);
partial void OnAttachUrlModelChanged();
partial void OnAttachUrlChanging(string value);
partial void OnAttachUrlChanged();
#endregion
public Model_QualityModel()
@@ -127723,6 +127731,46 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttachUrlModel", DbType="NVarChar(1000)")]
public string AttachUrlModel
{
get
{
return this._AttachUrlModel;
}
set
{
if ((this._AttachUrlModel != value))
{
this.OnAttachUrlModelChanging(value);
this.SendPropertyChanging();
this._AttachUrlModel = value;
this.SendPropertyChanged("AttachUrlModel");
this.OnAttachUrlModelChanged();
}
}
}
[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.AssociationAttribute(Name="FK_Model_QualityModel_Base_CompanyModel", Storage="_Base_CompanyModel", ThisKey="CompanyModelId", OtherKey="CompanyModelId", IsForeignKey=true)]
public Base_CompanyModel Base_CompanyModel
{