提交 | 用户 | age
|
3ce49a
|
1 |
package com.hz.phis.dt.card; |
F |
2 |
|
|
3 |
|
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.math.BigDecimal; |
|
7 |
|
|
8 |
/** |
|
9 |
* 卡项详情实体 |
|
10 |
* |
|
11 |
* @author fwq |
|
12 |
*/ |
|
13 |
@Data |
|
14 |
public class CardInfoDt { |
|
15 |
/**卡项详情信息标识*/ |
|
16 |
private String id; |
|
17 |
/**编号(项目/商品/增值金/储值金/积分/项目分类/商品分类)*/ |
|
18 |
private String commonCode; |
|
19 |
/**公共标识(项目/商品/增值金(PaymentMethod)/储值金(PaymentMethod)/积分(PaymentMethod)*/ |
|
20 |
private String commonId; |
|
21 |
/**公共名称(项目/商品名称/增值金(PaymentMethod)/储值金(PaymentMethod)/积分(PaymentMethod)*/ |
|
22 |
private String commonName; |
|
23 |
/**公共类型(project项目,retail商品,increment增值金,stored储值金,integral积分,项目分类project_type,retail_type商品分类)*/ |
|
24 |
private String commonType; |
|
25 |
/**规格*/ |
|
26 |
private String specJson; |
|
27 |
/**单价原价*/ |
|
28 |
private BigDecimal price; |
|
29 |
/**最大次数*/ |
|
30 |
private Integer maxNum; |
|
31 |
/**员工业绩次数*/ |
|
32 |
private Integer emResultsNum; |
|
33 |
/**分摊金额*/ |
|
34 |
private BigDecimal shareMoney; |
|
35 |
/**每次划扣的扣减次数*/ |
|
36 |
private Integer everyDrawNum; |
|
37 |
/**每次划扣的分摊金额*/ |
|
38 |
private BigDecimal everyShareMoney; |
|
39 |
/**卡项标识*/ |
|
40 |
private String cardItemId; |
|
41 |
/**卡项权益标识*/ |
|
42 |
private String cardEquityId; |
|
43 |
|
|
44 |
/**使用数量*/ |
|
45 |
private Integer usedNum; |
|
46 |
} |