| 123456789101112131415161718 |
- package com.tzy.dto.local;
- import com.tzy.sportcard.point.domain.AppUserPointRecord;
- import lombok.Data;
- import java.util.List;
- @Data
- public class UserPointDTO {
- /*private Long userId;
- private Integer point;
- private String refId; // 参与记录id
- private Long orderId; // 拍品id*/
- private Integer userId;
- private List<AppUserPointRecord> pointRecords;
- }
|