feat: add point mall redemption

This commit is contained in:
Tim
2025-08-17 02:06:47 +08:00
parent df4df1933a
commit 8d98c876d2
11 changed files with 352 additions and 84 deletions

View File

@@ -0,0 +1,10 @@
package com.openisle.dto;
import lombok.Data;
/** Request to redeem a point mall good. */
@Data
public class PointRedeemRequest {
private Long goodId;
private String contact;
}