fhx
2024-05-13 9e43ec0bbcd868e45ea6239dd865077f135fc51f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.hz.phis.dt.reward;
 
import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
import lombok.Data;
 
import java.util.List;
 
@Data
public class RewardRecordDto {
 
    private String goodsName;
 
    private String goodsId;
 
    private String employeeId;
 
    private Integer deduIntegral;
 
    private Integer number;
 
    private Integer type;
 
    private String commonId;
 
    private String userId;
 
    private List<RewardRecordDto> recordDtoList;
}