|
@@ -70,7 +70,7 @@ public class TourTourismProjectTravelNotesController {
|
|
|
@SaCheckPermission("tourTourismProjectTravelNotes.add")
|
|
|
@OperationLog(type = SysOperationLogType.ADD)
|
|
|
@PostMapping("/add")
|
|
|
- public ResponseResult<Long> add(
|
|
|
+ public ResponseResult<String> add(
|
|
|
@MyRequestBody TourTourismProjectTravelNotesDto tourTourismProjectTravelNotesDto,
|
|
|
@MyRequestBody TourTourismTravelNotesFileDto tourTourismTravelNotesFileDto,
|
|
|
@MyRequestBody TourTourismTravelNotesContentDto tourTourismTravelNotesContentDto) {
|
|
@@ -97,7 +97,7 @@ public class TourTourismProjectTravelNotesController {
|
|
|
@SaCheckPermission("tourTourismProjectTravelNotes.update")
|
|
|
@OperationLog(type = SysOperationLogType.UPDATE)
|
|
|
@PostMapping("/update")
|
|
|
- public ResponseResult<Long> update(
|
|
|
+ public ResponseResult<String> update(
|
|
|
@MyRequestBody TourTourismProjectTravelNotesDto tourTourismProjectTravelNotesDto,
|
|
|
@MyRequestBody TourTourismTravelNotesFileDto tourTourismTravelNotesFileDto,
|
|
|
@MyRequestBody TourTourismTravelNotesContentDto tourTourismTravelNotesContentDto) {
|
|
@@ -126,7 +126,7 @@ public class TourTourismProjectTravelNotesController {
|
|
|
@SaCheckPermission("tourTourismProjectTravelNotes.delete")
|
|
|
@OperationLog(type = SysOperationLogType.DELETE)
|
|
|
@PostMapping("/delete")
|
|
|
- public ResponseResult<Void> delete(@MyRequestBody Long id) {
|
|
|
+ public ResponseResult<Void> delete(@MyRequestBody String id) {
|
|
|
if (MyCommonUtil.existBlankArgument(id)) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.ARGUMENT_NULL_EXIST);
|
|
|
}
|
|
@@ -142,11 +142,11 @@ public class TourTourismProjectTravelNotesController {
|
|
|
@SaCheckPermission("tourTourismProjectTravelNotes.delete")
|
|
|
@OperationLog(type = SysOperationLogType.DELETE_BATCH)
|
|
|
@PostMapping("/deleteBatch")
|
|
|
- public ResponseResult<Void> deleteBatch(@MyRequestBody List<Long> idList) {
|
|
|
+ public ResponseResult<Void> deleteBatch(@MyRequestBody List<String> idList) {
|
|
|
if (MyCommonUtil.existBlankArgument(idList)) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.ARGUMENT_NULL_EXIST);
|
|
|
}
|
|
|
- for (Long id : idList) {
|
|
|
+ for (String id : idList) {
|
|
|
ResponseResult<Void> responseResult = this.doDelete(id);
|
|
|
if (!responseResult.isSuccess()) {
|
|
|
return responseResult;
|
|
@@ -245,7 +245,7 @@ public class TourTourismProjectTravelNotesController {
|
|
|
*/
|
|
|
@SaCheckPermission("tourTourismProjectTravelNotes.view")
|
|
|
@GetMapping("/view")
|
|
|
- public ResponseResult<TourTourismProjectTravelNotesVo> view(@RequestParam Long id) {
|
|
|
+ public ResponseResult<TourTourismProjectTravelNotesVo> view(@RequestParam String id) {
|
|
|
TourTourismProjectTravelNotes tourTourismProjectTravelNotes = tourTourismProjectTravelNotesService.getByIdWithRelation(id, MyRelationParam.full());
|
|
|
if (tourTourismProjectTravelNotes == null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
@@ -266,7 +266,7 @@ public class TourTourismProjectTravelNotesController {
|
|
|
@SaCheckPermission("tourTourismProjectTravelNotes.update")
|
|
|
@PostMapping("/listNotInTourTravelNotesProjectRelation")
|
|
|
public ResponseResult<MyPageData<TourismProjectVo>> listNotInTourTravelNotesProjectRelation(
|
|
|
- @MyRequestBody Long id,
|
|
|
+ @MyRequestBody String id,
|
|
|
@MyRequestBody TourismProjectDto tourismProjectDtoFilter,
|
|
|
@MyRequestBody MyOrderParam orderParam,
|
|
|
@MyRequestBody MyPageParam pageParam) {
|
|
@@ -295,7 +295,7 @@ public class TourTourismProjectTravelNotesController {
|
|
|
@SaCheckPermission("tourTourismProjectTravelNotes.view")
|
|
|
@PostMapping("/listTourTravelNotesProjectRelation")
|
|
|
public ResponseResult<MyPageData<TourismProjectVo>> listTourTravelNotesProjectRelation(
|
|
|
- @MyRequestBody(required = true) Long id,
|
|
|
+ @MyRequestBody(required = true) String id,
|
|
|
@MyRequestBody TourismProjectDto tourismProjectDtoFilter,
|
|
|
@MyRequestBody MyOrderParam orderParam,
|
|
|
@MyRequestBody MyPageParam pageParam) {
|
|
@@ -323,7 +323,7 @@ public class TourTourismProjectTravelNotesController {
|
|
|
@OperationLog(type = SysOperationLogType.ADD_M2M)
|
|
|
@PostMapping("/addTourTravelNotesProjectRelation")
|
|
|
public ResponseResult<Void> addTourTravelNotesProjectRelation(
|
|
|
- @MyRequestBody Long travelNotesId,
|
|
|
+ @MyRequestBody String travelNotesId,
|
|
|
@MyRequestBody List<TourTravelNotesProjectRelationDto> tourTravelNotesProjectRelationDtoList) {
|
|
|
|
|
|
//先验证绑定的项目是否超过三个
|
|
@@ -381,7 +381,7 @@ public class TourTourismProjectTravelNotesController {
|
|
|
@SaCheckPermission("tourTourismProjectTravelNotes.update")
|
|
|
@GetMapping("/viewTourTravelNotesProjectRelation")
|
|
|
public ResponseResult<TourTravelNotesProjectRelationVo> viewTourTravelNotesProjectRelation(
|
|
|
- @RequestParam Long travelNotesId, @RequestParam Long projectId) {
|
|
|
+ @RequestParam String travelNotesId, @RequestParam String projectId) {
|
|
|
TourTravelNotesProjectRelation tourTravelNotesProjectRelation = tourTourismProjectTravelNotesService.getTourTravelNotesProjectRelation(travelNotesId, projectId);
|
|
|
if (tourTravelNotesProjectRelation == null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
@@ -401,7 +401,7 @@ public class TourTourismProjectTravelNotesController {
|
|
|
@OperationLog(type = SysOperationLogType.DELETE_M2M)
|
|
|
@PostMapping("/deleteTourTravelNotesProjectRelation")
|
|
|
public ResponseResult<Void> deleteTourTravelNotesProjectRelation(
|
|
|
- @MyRequestBody Long travelNotesId, @MyRequestBody Long projectId) {
|
|
|
+ @MyRequestBody String travelNotesId, @MyRequestBody String projectId) {
|
|
|
if (MyCommonUtil.existBlankArgument(travelNotesId, projectId)) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.ARGUMENT_NULL_EXIST);
|
|
|
}
|
|
@@ -422,7 +422,7 @@ public class TourTourismProjectTravelNotesController {
|
|
|
@OperationLog(type = SysOperationLogType.DELETE_M2M_BATCH)
|
|
|
@PostMapping("/deleteTourTravelNotesProjectRelationList")
|
|
|
public ResponseResult<Void> deleteTourTravelNotesProjectRelationList(
|
|
|
- @MyRequestBody Long travelNotesId, @MyRequestBody List<Long> projectIdList) {
|
|
|
+ @MyRequestBody String travelNotesId, @MyRequestBody List<String> projectIdList) {
|
|
|
if (MyCommonUtil.existBlankArgument(travelNotesId, projectIdList)) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.ARGUMENT_NULL_EXIST);
|
|
|
}
|
|
@@ -573,7 +573,7 @@ public class TourTourismProjectTravelNotesController {
|
|
|
return ResponseResult.success(new Tuple2<>(tourTourismProjectTravelNotes, relationData));
|
|
|
}
|
|
|
|
|
|
- private ResponseResult<Void> doDelete(Long id) {
|
|
|
+ private ResponseResult<Void> doDelete(String id) {
|
|
|
String errorMessage;
|
|
|
// 验证关联Id的数据合法性
|
|
|
TourTourismProjectTravelNotes originalTourTourismProjectTravelNotes = tourTourismProjectTravelNotesService.getById(id);
|