|
|
@@ -79,6 +79,15 @@ public class OtherReceivableController{
|
|
|
public ResponseResultVO<?> getOtherReceivableForUpdate(@PathVariable String id) {
|
|
|
return otherReceivableService.getOtherReceivableForUpdate(id);
|
|
|
}
|
|
|
+ /**
|
|
|
+ * @desc : 通过ID查询
|
|
|
+ * @author : 王英杰
|
|
|
+ * @date : 2023/1/9 10:41
|
|
|
+ */
|
|
|
+ @PostMapping({"/{id}"})
|
|
|
+ public ResponseResultVO selectById(@PathVariable String id) {
|
|
|
+ return otherReceivableService.getOtherReceivableForUpdate(id);
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* @desc : 作废
|