fix:修改
This commit is contained in:
@@ -363517,6 +363517,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _SignTime;
|
||||
|
||||
private string _IsUsedType;
|
||||
|
||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||
|
||||
private EntitySet<Accident_AccidentReportOtherItem> _Accident_AccidentReportOtherItem;
|
||||
@@ -363721,6 +363723,8 @@ namespace Model
|
||||
partial void OnPersonStatesChanged();
|
||||
partial void OnSignTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnSignTimeChanged();
|
||||
partial void OnIsUsedTypeChanging(string value);
|
||||
partial void OnIsUsedTypeChanged();
|
||||
#endregion
|
||||
|
||||
public SitePerson_Person()
|
||||
@@ -365171,6 +365175,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUsedType", DbType="Char(1)")]
|
||||
public string IsUsedType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsUsedType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsUsedType != value))
|
||||
{
|
||||
this.OnIsUsedTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsUsedType = value;
|
||||
this.SendPropertyChanged("IsUsedType");
|
||||
this.OnIsUsedTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentPersonRecord_SitePerson_Person", Storage="_Accident_AccidentPersonRecord", ThisKey="PersonId", OtherKey="PersonId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Accident_AccidentPersonRecord> Accident_AccidentPersonRecord
|
||||
{
|
||||
@@ -486246,6 +486270,10 @@ namespace Model
|
||||
|
||||
private string _IsUsedName;
|
||||
|
||||
private string _IsUsedType;
|
||||
|
||||
private string _IsUsedTypeName;
|
||||
|
||||
private bool _IsCardUsed;
|
||||
|
||||
private string _IsCardUsedName;
|
||||
@@ -486700,6 +486728,38 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUsedType", DbType="Char(1)")]
|
||||
public string IsUsedType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsUsedType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsUsedType != value))
|
||||
{
|
||||
this._IsUsedType = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUsedTypeName", DbType="VarChar(6) NOT NULL", CanBeNull=false)]
|
||||
public string IsUsedTypeName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsUsedTypeName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsUsedTypeName != value))
|
||||
{
|
||||
this._IsUsedTypeName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsCardUsed", DbType="Bit NOT NULL")]
|
||||
public bool IsCardUsed
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user