SGGL_SHJ/SGGL/WebAPI/Controllers/CQMS/CQMSRewardAndPunishControll...

29 lines
1005 B
C#
Raw Normal View History

2023-03-16 14:35:01 +08:00
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;
}
}
}