| | |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.validation.Valid; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @PostMapping("/neighbor/neighborCommentReplyByApp") |
| | | R neighborCommentReplyByApp(@RequestBody ComActNeighborCommentReplyAppDTO commentReplyAppDTO); |
| | | |
| | | /** |
| | | * 实有房屋_编辑 |
| | | * @param villageId 实有房屋id |
| | | * @param comMngVillageVO 请求参数 |
| | | * @return |
| | | */ |
| | | @PostMapping("/editvillage/{villageId}") |
| | | R editvillage(@PathVariable("villageId") Long villageId,@RequestBody ComMngVillageVO comMngVillageVO); |
| | | } |