提交 | 用户 | 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 | ||
6 | @Data | |
7 | public class RewardRecordDto { | |
8 | ||
9 | private String goodsName; | |
10 | ||
11 | private String goodsId; | |
12 | ||
13 | private String employeeId; | |
14 | ||
15 | private Integer deduIntegral; | |
16 | ||
17 | private Integer number; | |
18 | ||
19 | private Integer type; | |
20 | ||
21 | private String commonId; | |
22 | ||
23 | private String userId; | |
24 | } |