25 lines
552 B
C#
25 lines
552 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using dccdc.DAL;
|
|
using dccdc.Models;
|
|
|
|
namespace dccdc.BLL
|
|
{
|
|
public class JmmxBll
|
|
{
|
|
public JmmxDal dal = new JmmxDal();
|
|
/// <summary>
|
|
/// 根据减免申请ID获取减免项目列表
|
|
/// </summary>
|
|
/// <param name="jmid"></param>
|
|
/// <returns></returns>
|
|
public List<JmmxModel> GetJmmxList(string jmid)
|
|
{
|
|
return dal.GetJmmxList(jmid);
|
|
}
|
|
}
|
|
}
|