mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-02 18:46:29 +00:00
build 数据更更新
This commit is contained in:
@@ -24,11 +24,11 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 对账订单控制器
|
||||
* 分账订单控制器
|
||||
* @author xxm
|
||||
* @since 2024/4/7
|
||||
*/
|
||||
@Tag(name = "对账订单控制器")
|
||||
@Tag(name = "分账订单控制器")
|
||||
@RestController
|
||||
@RequestMapping("/order/allocation")
|
||||
@RequiredArgsConstructor
|
||||
@@ -72,7 +72,7 @@ public class AllocationOrderController {
|
||||
@Operation(summary = "同步分账结果")
|
||||
@PostMapping("/sync")
|
||||
public ResResult<Void> sync(Long id){
|
||||
AllocationSyncParam param = new AllocationSyncParam();
|
||||
AllocationSyncParam param = new AllocationSyncParam();
|
||||
param.setAllocationId(id);
|
||||
allocationService.sync(param);
|
||||
return Res.ok();
|
||||
|
@@ -21,7 +21,7 @@ import java.util.List;
|
||||
* @author xxm
|
||||
* @since 2024/3/28
|
||||
*/
|
||||
@Tag(name = "对账接收方控制器")
|
||||
@Tag(name = "分账接收方控制器")
|
||||
@RestController
|
||||
@RequestMapping("/allocation/receiver")
|
||||
@RequiredArgsConstructor
|
||||
|
@@ -47,6 +47,7 @@ public class AllocationReceiverDto extends BaseDto {
|
||||
|
||||
/** 接收方姓名 */
|
||||
@Schema(description = "接收方姓名")
|
||||
@SensitiveInfo
|
||||
private String receiverName;
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user