using CRM.Core.Model.Entity; using System.Linq; namespace CRM.Core.BLL.Base { public class BAS_INNERUSERGROUP_BL { #region 获取实体 /// /// 获取实体 /// /// /// public BAS_INNERUSERGROUP GetModel(decimal inneruserId) { using (zxdContext db = new zxdContext()) { return db.BAS_INNERUSERGROUP.FirstOrDefault(m => m.INNERUSERID == inneruserId); } } #endregion } }