This commit is contained in:
parent
e53561a667
commit
00a98811a4
|
@ -0,0 +1,2 @@
|
|||
alter table Sys_User add IdCard nvarchar(50) null;
|
||||
GO
|
|
@ -100389,6 +100389,8 @@ namespace Model
|
|||
|
||||
private string _SignatureUrl;
|
||||
|
||||
private string _IdCard;
|
||||
|
||||
private EntitySet<Base_Project> _Base_Project;
|
||||
|
||||
private EntitySet<Common_NoticeSign> _Common_NoticeSign;
|
||||
|
@ -100475,6 +100477,8 @@ namespace Model
|
|||
partial void OnDeviceIdChanged();
|
||||
partial void OnSignatureUrlChanging(string value);
|
||||
partial void OnSignatureUrlChanged();
|
||||
partial void OnIdCardChanging(string value);
|
||||
partial void OnIdCardChanged();
|
||||
#endregion
|
||||
|
||||
public Sys_User()
|
||||
|
@ -100877,6 +100881,26 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IdCard", DbType="NVarChar(50)")]
|
||||
public string IdCard
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IdCard;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IdCard != value))
|
||||
{
|
||||
this.OnIdCardChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IdCard = value;
|
||||
this.SendPropertyChanged("IdCard");
|
||||
this.OnIdCardChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Base_Project_Sys_User", Storage="_Base_Project", ThisKey="UserId", OtherKey="CreateManId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Base_Project> Base_Project
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue