diff --git a/DataBase/版本日志/HJGLDB_DS_2025-07-30_gf.sql b/DataBase/版本日志/HJGLDB_DS_2025-07-30_gf.sql new file mode 100644 index 0000000..e5dafe5 --- /dev/null +++ b/DataBase/版本日志/HJGLDB_DS_2025-07-30_gf.sql @@ -0,0 +1,2 @@ +alter table Sys_User add IdCard nvarchar(50) null; +GO \ No newline at end of file diff --git a/HJGL_DS/Model/Model.cs b/HJGL_DS/Model/Model.cs index bf92a65..6390973 100644 --- a/HJGL_DS/Model/Model.cs +++ b/HJGL_DS/Model/Model.cs @@ -100389,6 +100389,8 @@ namespace Model private string _SignatureUrl; + private string _IdCard; + private EntitySet _Base_Project; private EntitySet _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 {