fhx
2024-04-11 b2ad4b914ccaf0c22e382855d18d9bca64f016aa
提交 | 用户 | age
4a384f 1 package com.hz.his.dto.quotation;
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;
04fbaf 8 import java.util.List;
4a384f 9
F 10 /**
11  * 报价单子项dto
12  * @USER: fhx
13  * @DATE: 2023/8/8
14  **/
15 @Data
16 public class QuotationItemDto {
17
18     /** QuotationItem表id */
19     private String id;
20
21     /** 关联类型 */
04fbaf 22     private String assocType;
4a384f 23
F 24     /** 商品类型(OrderItemConstants) */
25     @Column(comment = "", length = 20, type = MySqlTypeConstant.VARCHAR,isNull = false)
26     private String type;
27     /** 项目id/商品id/套餐id/其他id  */
28     private String goodsId;
29     /** 项目编号/商品编码/套餐编码/其他编码 */
30     private String goodsNo;
31     /** 项目名称/商品名称 */
32     private String goodsName;
33
34     /** 身体部位名称 */
35     private String bodyPartsName;
36     /** 规格 */
37     private String specs;
38     /** 单位 */
39     private String unit;
40     /** 医生资质 */
41     private String doctorQualification;
42
43     /** 项目原价 */
44     private BigDecimal oriPrice;
45     /** 售价 */
46     private BigDecimal price;
47     /** 购买数量 */
48     private Integer buyNum;
49
04fbaf 50     /** 多关联信息 */
F 51     private List<QuotationItemAssocDto> itemAssocList;
52
4a384f 53     public QuotationItemDto() {
F 54     }
55 }