using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BLL { public static class ConstValue { /// /// 获取常量下拉框 根据常量组id /// /// 常量组id /// 常量集合 public static List drpConstItemList(string groupId) { var list = (from x in Funs.DB.Sys_Const where x.GroupId == groupId orderby x.SortIndex select x).ToList(); return list; } #region 常量组 #endregion } }