22 lines
537 B
C#
22 lines
537 B
C#
using CRM.Core.Model.Entity;
|
|
using System.Linq;
|
|
|
|
namespace CRM.Core.BLL.Base
|
|
{
|
|
public class BAS_SALESDEPARTMENT_BL
|
|
{
|
|
zxdContext db = new zxdContext();
|
|
#region 获取单条用户信息
|
|
/// <summary>
|
|
/// 获取实体
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
public BAS_SALESDEPARTMENT GetModel(decimal id)
|
|
{
|
|
return db.BAS_SALESDEPARTMENT.FirstOrDefault(p => p.SALEDEPTID == id);
|
|
}
|
|
#endregion
|
|
}
|
|
}
|