build 数据更更新

This commit is contained in:
xxm1995
2024-04-17 18:06:23 +08:00
parent b3594d08fb
commit 9ed4ce17ae
7 changed files with 4350 additions and 15 deletions

View File

@@ -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();

View File

@@ -21,7 +21,7 @@ import java.util.List;
* @author xxm
* @since 2024/3/28
*/
@Tag(name = "账接收方控制器")
@Tag(name = "账接收方控制器")
@RestController
@RequestMapping("/allocation/receiver")
@RequiredArgsConstructor

View File

@@ -47,6 +47,7 @@ public class AllocationReceiverDto extends BaseDto {
/** 接收方姓名 */
@Schema(description = "接收方姓名")
@SensitiveInfo
private String receiverName;
/**