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