using BLL;
using Model;
using System;
using System.Collections.Generic;
using System.Web.Http;
namespace WebAPI.Controllers
{
public class CQMSRewardAndPunishController : ApiController
{
///
/// 根据项目id获取质量会议列表集合
///
///
///
///
/// 0-全部,1-奖励,2-处罚
///
[HttpGet]
public ResponseData> getMeetingList(string projectId, int index, int page, string type)
{
ResponseData> res = new ResponseData>();
res.successful = true;
//res.resultValue = BLL.RewardAndPunishService.getListDataForApi(projectId, index, page, type);
return res;
}
}
}