|
@@ -11,6 +11,7 @@ import com.fs.his.param.FsStorePaymentParam;
|
|
import com.fs.his.service.IFsExportTaskService;
|
|
import com.fs.his.service.IFsExportTaskService;
|
|
import com.fs.his.vo.FsStorePaymentExcelVO;
|
|
import com.fs.his.vo.FsStorePaymentExcelVO;
|
|
import com.fs.his.vo.FsStorePaymentVO;
|
|
import com.fs.his.vo.FsStorePaymentVO;
|
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
@@ -38,6 +39,7 @@ import com.fs.common.core.page.TableDataInfo;
|
|
*/
|
|
*/
|
|
@RestController
|
|
@RestController
|
|
@RequestMapping("/his/storePayment")
|
|
@RequestMapping("/his/storePayment")
|
|
|
|
+@Slf4j
|
|
public class FsStorePaymentController extends BaseController
|
|
public class FsStorePaymentController extends BaseController
|
|
{
|
|
{
|
|
@Autowired
|
|
@Autowired
|
|
@@ -131,7 +133,7 @@ public class FsStorePaymentController extends BaseController
|
|
@GetMapping(value = "refund/{paymentId}")
|
|
@GetMapping(value = "refund/{paymentId}")
|
|
public R refund(@PathVariable("paymentId") Long paymentId)
|
|
public R refund(@PathVariable("paymentId") Long paymentId)
|
|
{
|
|
{
|
|
-
|
|
|
|
|
|
+ log.info("sysUserId: {} 提交退款", getUserId());
|
|
return fsStorePaymentService.refundFsStorePayment(paymentId);
|
|
return fsStorePaymentService.refundFsStorePayment(paymentId);
|
|
}
|
|
}
|
|
|
|
|