44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using dccdc.DAL;
|
|
using dccdc.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace dccdc.BLL
|
|
{
|
|
public class charge_detailBll
|
|
{
|
|
public charge_detailDal Dal = new charge_detailDal();
|
|
public int getCount(string key)
|
|
{
|
|
return Dal.getCount(key);
|
|
}
|
|
|
|
public List<charge_detailModel> getList(int page, int pagesize, string key)
|
|
{
|
|
return Dal.getList(page, pagesize, key);
|
|
}
|
|
|
|
public List<charge_detailModel> GetAllList(string id)
|
|
{
|
|
return Dal.GetAllList(id);
|
|
}
|
|
|
|
public object save(charge_detailModel ct)
|
|
{
|
|
return Dal.save(ct);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 根据收费ID获取收费详细
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public List<charge_detailModel> GetModelsBychargeId(string chargeid,string jmlx,string ids="")
|
|
{
|
|
return Dal.GetModelsBychargeId(chargeid,jmlx,ids);
|
|
}
|
|
}
|
|
}
|