Merge branch 'master' of https://gitee.com/frane-yang/SGGL_SeDin_New
This commit is contained in:
@@ -36,6 +36,10 @@ namespace BLL
|
||||
{
|
||||
dropName.DataSource = HSSE_getContractType();
|
||||
}
|
||||
else if (groupId == Group_CertificateType)
|
||||
{
|
||||
dropName.DataSource = HSSE_getCertificateType();
|
||||
}
|
||||
dropName.DataBind();
|
||||
if (isShowPlease)
|
||||
{
|
||||
@@ -104,6 +108,11 @@ namespace BLL
|
||||
/// 合同类型 组id
|
||||
/// </summary>
|
||||
public const string Group_ContractType = "ContractType";
|
||||
|
||||
/// <summary>
|
||||
/// 证书类型 组id
|
||||
/// </summary>
|
||||
public const string Group_CertificateType = "CertificateType";
|
||||
#endregion
|
||||
|
||||
#region 公共平台
|
||||
@@ -350,6 +359,20 @@ namespace BLL
|
||||
list[2] = new ListItem("以完成一定工作量", "3");
|
||||
return list;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 证书类型
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static ListItem[] HSSE_getCertificateType()
|
||||
{
|
||||
ListItem[] list = new ListItem[4];
|
||||
list[0] = new ListItem("特岗", "1");
|
||||
list[1] = new ListItem("安管", "2");
|
||||
list[2] = new ListItem("特种设备", "3");
|
||||
list[3] = new ListItem("其他", "-1");
|
||||
return list;
|
||||
}
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user