| | |
| | | |
| | | } |
| | | [HttpPost,Route("ChangeStatus"),AllowAnonymous] |
| | | public WebResponseContent ChangeStatus(int id) |
| | | public WebResponseContent ChangeStatus(string id,string gruops) |
| | | { |
| | | return Service.ChangeStatus(id); |
| | | return Service.ChangeStatus(id,gruops); |
| | | } |
| | | |
| | | [HttpGet,Route("ShowPutake"),AllowAnonymous] |
| | | public WebResponseContent ShowPutake(string group_dg) |
| | | public WebResponseContent ShowPutake([FromBody] string group_dg) |
| | | { |
| | | return Service.ShowPutake(group_dg); |
| | | } |
| | | |
| | | [HttpGet,Route("GetNjtake"),AllowAnonymous] |
| | | public WebResponseContent GetNjtake(string njid) |
| | | public WebResponseContent GetNjtake([FromBody] string njid) |
| | | { |
| | | return Service.GetNjtake(njid); |
| | | } |
| | | |
| | | |
| | | } |
| | | } |