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