diff --git a/DataBase/版本日志/SGGLDB_V2023-07-23.sql b/DataBase/版本日志/SGGLDB_V2023-07-23.sql
new file mode 100644
index 00000000..c6e804dc
--- /dev/null
+++ b/DataBase/版本日志/SGGLDB_V2023-07-23.sql
@@ -0,0 +1,4 @@
+ALTER TABLE Base_Certificate ADD Type VARCHAR(10) NULL
+GO
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͣ1ظڣ2ܣ3豸-1' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Base_Certificate', @level2type=N'COLUMN',@level2name=N'Type'
+GO
diff --git a/SGGL/BLL/BaseInfo/CertificateService.cs b/SGGL/BLL/BaseInfo/CertificateService.cs
index 04f8b360..9b2f6113 100644
--- a/SGGL/BLL/BaseInfo/CertificateService.cs
+++ b/SGGL/BLL/BaseInfo/CertificateService.cs
@@ -34,6 +34,7 @@ namespace BLL
CertificateName = certificate.CertificateName,
CertificateType = certificate.CertificateType,
IsRegisterHSSE = certificate.IsRegisterHSSE,
+ Type= certificate.Type,
Remark = certificate.Remark
};
db.Base_Certificate.InsertOnSubmit(newCertificate);
@@ -54,6 +55,7 @@ namespace BLL
newCertificate.CertificateName = certificate.CertificateName;
newCertificate.CertificateType = certificate.CertificateType;
newCertificate.IsRegisterHSSE = certificate.IsRegisterHSSE;
+ newCertificate.Type = certificate.Type;
newCertificate.Remark = certificate.Remark;
db.SubmitChanges();
}
diff --git a/SGGL/BLL/DropListService.cs b/SGGL/BLL/DropListService.cs
index 6911bff9..8b080c2d 100644
--- a/SGGL/BLL/DropListService.cs
+++ b/SGGL/BLL/DropListService.cs
@@ -34,6 +34,10 @@
{
dropName.DataSource = HSSE_getContractType();
}
+ else if (groupId == Group_CertificateType)
+ {
+ dropName.DataSource = HSSE_getCertificateType();
+ }
dropName.DataBind();
if (isShowPlease)
{
@@ -102,6 +106,11 @@
/// 合同类型 组id
///
public const string Group_ContractType = "ContractType";
+
+ ///