提交 | 用户 | age
|
26b23b
|
1 |
package com.hz.his.dto.order; |
F |
2 |
|
|
3 |
import com.gitee.sunchenbin.mybatis.actable.annotation.Column; |
|
4 |
import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant; |
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
import java.math.BigDecimal; |
|
8 |
|
|
9 |
/** |
|
10 |
* 订单计算应付金额item信息 |
|
11 |
* @USER: fhx |
|
12 |
* @DATE: 2023/6/13 |
|
13 |
**/ |
|
14 |
@Data |
|
15 |
public class OrderCountShouldTotalItemDto { |
|
16 |
//商品类型 |
|
17 |
private String type; |
|
18 |
//商品id |
|
19 |
private String commonId; |
|
20 |
//购买数量 |
|
21 |
private Integer buyNum; |
|
22 |
//订单折扣 |
|
23 |
private BigDecimal discount = BigDecimal.ZERO; |
|
24 |
} |