|
@@ -64,7 +64,7 @@ public class TourismProjectToWebController {
|
|
|
*/
|
|
|
@SaIgnore
|
|
|
@GetMapping("/detail")
|
|
|
- public ResponseResult<TourismProjectVo> detail(@NotNull(message = "所属目录(id)不能为空") Long id) {
|
|
|
+ public ResponseResult<TourismProjectVo> detail(@NotNull(message = "所属目录(id)不能为空") String id) {
|
|
|
TourismProject tourismProject = tourismProjectService.getByIdWithRelation(id, MyRelationParam.full());
|
|
|
if (tourismProject == null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
@@ -80,7 +80,7 @@ public class TourismProjectToWebController {
|
|
|
*/
|
|
|
@SaIgnore
|
|
|
@GetMapping("/viewDatePrice")
|
|
|
- public ResponseResult<WebSiteProjectDatePriceVo> view(@RequestParam Long projectId) {
|
|
|
+ public ResponseResult<WebSiteProjectDatePriceVo> view(@RequestParam String projectId) {
|
|
|
WebSiteProjectDatePriceVo webSiteProjectDatePriceVo = tourismProjectToWebService.view(projectId);
|
|
|
return ResponseResult.success(webSiteProjectDatePriceVo);
|
|
|
}
|