Compare commits

..

No commits in common. 'dc6b92f54489b145939fb2fd0316fd820e023f5e' and 'cf80fe2eec5adc59731d81358554c60662af76ca' have entirely different histories.

@ -12,8 +12,10 @@ import com.ruoyi.system.service.TdMeetingService;
import com.ruoyi.web.controller.manager.TdMeetingManager;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.annotation.Resource;
import java.time.LocalDate;
@ -89,15 +91,5 @@ public class SysMeetingnumController extends BaseController {
return AjaxResult.success(obj);
}
/**
*
*/
@GetMapping("/detail/{id}")
public String view(@PathVariable("id") String id, ModelMap mmap) {
TdMeeting meeting = tdMeetingManager.selectTdMeeting(id);
mmap.put("meeting", meeting);
return prefix + "/detail";
}
}
Loading…
Cancel
Save