|
|
@@ -133,9 +133,9 @@ public class AdminReleaseApiController extends CertifyApiController{
|
|
|
* 外出申请详情、公出详情
|
|
|
*/
|
|
|
@RequestMapping(value = "/dtails", method = RequestMethod.GET)
|
|
|
- public Result dtails(Integer id){
|
|
|
+ public Result details(Integer id){
|
|
|
Result res =new Result();
|
|
|
- res.setData(publicReleaseService.dtails(id));
|
|
|
+ res.setData(publicReleaseService.details(id));
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
@@ -144,7 +144,7 @@ public class AdminReleaseApiController extends CertifyApiController{
|
|
|
* 外出申请详情
|
|
|
*/
|
|
|
@RequestMapping(value = "/followDtails", method = RequestMethod.GET)
|
|
|
- public Result followDtails(String id){
|
|
|
+ public Result followDetails(String id){
|
|
|
Result res =new Result();
|
|
|
res.setData(publicReleaseService.followDtails(id));
|
|
|
return res;
|