gongzuming
2024-09-12 55255f6b9f81b8a3fdd576b27cda5c34fbb7ba0a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.mzl.flower.dto.response.point;
 
 
import lombok.Data;
 
@Data
public class ExpiredPointDTO {
 
    private String userId;
 
    private Long customerId;
 
    private Integer addPoint;
 
    private Integer reducePoint;
}