202211301、项目人员身份证变化事件优化。2、新增人员是否同时在多项目字段。
This commit is contained in:
+31
-7
@@ -70769,7 +70769,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialName", DbType="NVarChar(30)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialName", DbType="NVarChar(300)")]
|
||||
public string MaterialName
|
||||
{
|
||||
get
|
||||
@@ -70789,7 +70789,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialSpec", DbType="NVarChar(20)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialSpec", DbType="NVarChar(300)")]
|
||||
public string MaterialSpec
|
||||
{
|
||||
get
|
||||
@@ -70809,7 +70809,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialMade", DbType="NVarChar(200)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialMade", DbType="NVarChar(300)")]
|
||||
public string MaterialMade
|
||||
{
|
||||
get
|
||||
@@ -70829,7 +70829,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialDef", DbType="NVarChar(300)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialDef", DbType="NVarChar(3000)")]
|
||||
public string MaterialDef
|
||||
{
|
||||
get
|
||||
@@ -70849,7 +70849,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipeGrade", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipeGrade", DbType="NVarChar(300)")]
|
||||
public string PipeGrade
|
||||
{
|
||||
get
|
||||
@@ -70869,7 +70869,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialUnit", DbType="NVarChar(10)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialUnit", DbType="NVarChar(300)")]
|
||||
public string MaterialUnit
|
||||
{
|
||||
get
|
||||
@@ -71191,7 +71191,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SpecificationAndModel", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SpecificationAndModel", DbType="NVarChar(1000)")]
|
||||
public string SpecificationAndModel
|
||||
{
|
||||
get
|
||||
@@ -116316,6 +116316,8 @@ namespace Model
|
||||
|
||||
private string _PersonType;
|
||||
|
||||
private System.Nullable<bool> _MultiProject;
|
||||
|
||||
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
|
||||
|
||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||
@@ -116908,6 +116910,8 @@ namespace Model
|
||||
partial void OnCertificateIdChanged();
|
||||
partial void OnPersonTypeChanging(string value);
|
||||
partial void OnPersonTypeChanged();
|
||||
partial void OnMultiProjectChanging(System.Nullable<bool> value);
|
||||
partial void OnMultiProjectChanged();
|
||||
#endregion
|
||||
|
||||
public Person_Persons()
|
||||
@@ -118365,6 +118369,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MultiProject", DbType="Bit")]
|
||||
public System.Nullable<bool> MultiProject
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MultiProject;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MultiProject != value))
|
||||
{
|
||||
this.OnMultiProjectChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MultiProject = value;
|
||||
this.SendPropertyChanged("MultiProject");
|
||||
this.OnMultiProjectChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Person_Persons", Storage="_Accident_AccidentHandle", ThisKey="PersonId", OtherKey="CompileMan", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user