|
|
@@ -22,7 +22,7 @@ import java.util.List;
|
|
|
@Api(tags = "入库退货API接口")
|
|
|
@RestController
|
|
|
@RequestMapping("/ivt/intoReturn")
|
|
|
-public class IntoReturnController{
|
|
|
+public class IntoReturnController {
|
|
|
|
|
|
public BaseService<IntoReturn> getService() {
|
|
|
return intoReturnService;
|
|
|
@@ -44,6 +44,7 @@ public class IntoReturnController{
|
|
|
public ResponseResultVO<PageList<IntoReturnResponse>> selectByCond(@RequestBody IntoReturnQuery intoReturnQuery) {
|
|
|
return intoReturnService.selectByCond(intoReturnQuery);
|
|
|
}
|
|
|
+
|
|
|
/**
|
|
|
* @desc : 新建采购退货
|
|
|
* @author : 于继渤
|
|
|
@@ -82,7 +83,11 @@ public class IntoReturnController{
|
|
|
return intoReturnService.selectByUpdate(id);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ /**
|
|
|
+ * @desc : 采购退货编辑
|
|
|
+ * @author : 于继渤
|
|
|
+ * @date : 2023/1/5 9:39
|
|
|
+ */
|
|
|
@ApiOperation(value = "编辑", notes = "编辑")
|
|
|
@PostMapping({"update"})
|
|
|
public ResponseResultVO<?> update(@RequestBody IntoReturnVO intoReturnVO) {
|