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