Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
shahaibo
2023-11-20 15:06:29 +08:00
7 changed files with 118 additions and 42 deletions

View File

@@ -67,7 +67,7 @@ public class ElementController {
@ApiOperation(value = "生成印花")
@PostMapping("/generatePrint")
public Response<CollectionGeneratePrintVO> generatePrint(@Valid @RequestBody CollectionGeneratePrintDTO generatePrintDTO) {
public Response<GenerateCollectionItemVO> generatePrint(@Valid @RequestBody CollectionGeneratePrintDTO generatePrintDTO) {
return Response.success(collectionElementService.generatePrint(generatePrintDTO));
}