|
@@ -5,7 +5,6 @@ import com.fjhx.victoriatourist.entity.jd.po.JdRefundDetail;
|
|
|
import com.fjhx.victoriatourist.service.jd.JdRefundDetailService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
@@ -17,7 +16,7 @@ import java.util.List;
|
|
|
* 京东售后退货明细 前端控制器
|
|
|
* </p>
|
|
|
*
|
|
|
- * @author
|
|
|
+ * @author
|
|
|
* @since 2024-09-25
|
|
|
*/
|
|
|
@RestController
|
|
@@ -28,7 +27,7 @@ public class JdRefundDetailController {
|
|
|
private JdRefundDetailService jdRefundDetailService;
|
|
|
|
|
|
@GetMapping("/getList")
|
|
|
- public List<JdRefundDetail> getList(@RequestBody JdRefundDetailSelectDto dto) {
|
|
|
+ public List<JdRefundDetail> getList(JdRefundDetailSelectDto dto) {
|
|
|
return jdRefundDetailService.getList(dto);
|
|
|
}
|
|
|
|