This commit is contained in:
jackchenyang
2024-06-24 17:41:45 +08:00
parent 1be4905996
commit 91ca5b1b6b
15 changed files with 352 additions and 148 deletions
+24 -4
View File
@@ -29,10 +29,6 @@ namespace Model
#region
partial void OnCreated();
partial void OnCreated()
{
this.CommandTimeout = 600;
}
partial void InsertAttachFile(AttachFile instance);
partial void UpdateAttachFile(AttachFile instance);
partial void DeleteAttachFile(AttachFile instance);
@@ -31471,6 +31467,8 @@ namespace Model
private System.Nullable<System.DateTime> _LockTime;
private string _SigntrueImage;
private EntitySet<FileControl_CompanyStandards> _FileControl_CompanyStandards;
private EntitySet<FileControl_DomesticLawsRegulations> _FileControl_DomesticLawsRegulations;
@@ -31539,6 +31537,8 @@ namespace Model
partial void OnErrorNumChanged();
partial void OnLockTimeChanging(System.Nullable<System.DateTime> value);
partial void OnLockTimeChanged();
partial void OnSigntrueImageChanging(string value);
partial void OnSigntrueImageChanged();
#endregion
public Sys_User()
@@ -31985,6 +31985,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SigntrueImage", DbType="NVarChar(255)")]
public string SigntrueImage
{
get
{
return this._SigntrueImage;
}
set
{
if ((this._SigntrueImage != value))
{
this.OnSigntrueImageChanging(value);
this.SendPropertyChanging();
this._SigntrueImage = value;
this.SendPropertyChanged("SigntrueImage");
this.OnSigntrueImageChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_FileControl_CompanyStandards_Sys_User", Storage="_FileControl_CompanyStandards", ThisKey="UserId", OtherKey="CompileMan", DeleteRule="NO ACTION")]
public EntitySet<FileControl_CompanyStandards> FileControl_CompanyStandards
{
@@ -44,6 +44,9 @@ namespace Model.ViewModels
/// 试验方式
/// </summary>
public string TestType { get; set; }
/// <summary>
/// 审核人
/// </summary>
public string Auditer { get; set; }
}
}