/// <summary> /// 获取广告费结算对象列表 /// </summary> /// <returns></returns> public JsonResult drpADTargetList() { DaADCostTarget dal = new DaADCostTarget(); IList<ADCostTarget> targets = dal.getList(); var result = new CustomJsonResult(); result.Data = targets; return result; }
/// <summary> /// 获取广告费结算对象列表 /// </summary> /// <returns></returns> public JsonResult ADCost_getList() { DaADCostTarget dal = new DaADCostTarget(); IList<ADCostTarget> targets = dal.getList(); var result = new CustomJsonResult(); result.Data = new { total = targets.Count, rows = targets }; return result; }