fwq
2024-02-07 0aed83e51c021b73b93a588e2385a3a380d60903
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.hz.phis.dt.card;
 
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 卡项详情实体
 *
 * @author fwq
 */
@Data
public class CardInfoDt {
    /**卡项详情信息标识*/
    private String id;
    /**编号(项目/商品/增值金/储值金/积分/项目分类/商品分类)*/
    private String commonCode;
    /**公共标识(项目/商品/增值金(PaymentMethod)/储值金(PaymentMethod)/积分(PaymentMethod)*/
    private String commonId;
    /**公共名称(项目/商品名称/增值金(PaymentMethod)/储值金(PaymentMethod)/积分(PaymentMethod)*/
    private String commonName;
    /**公共类型(project项目,retail商品,increment增值金,stored储值金,integral积分,项目分类project_type,retail_type商品分类)*/
    private String commonType;
    /**规格*/
    private String specJson;
    /**单价原价*/
    private BigDecimal price;
    /**最大次数*/
    private Integer maxNum;
    /**员工业绩次数*/
    private Integer emResultsNum;
    /**分摊金额*/
    private BigDecimal shareMoney;
    /**每次划扣的扣减次数*/
    private Integer everyDrawNum;
    /**每次划扣的分摊金额*/
    private BigDecimal everyShareMoney;
    /**卡项标识*/
    private String cardItemId;
    /**卡项权益标识*/
    private String cardEquityId;
 
    /**使用数量*/
    private Integer usedNum;
}