fwq
2024-04-15 7285f70c4804d88c175ace932956eec524e2ceda
提交 | 用户 | age
d2fd2f 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;
8ae0fa 8 import java.util.List;
d2fd2f 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     /** 关联类型 */
8ae0fa 22     private String assocType;
d2fd2f 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
8ae0fa 50     /** 多关联信息 */
F 51     private List<QuotationItemAssocDto> itemAssocList;
52
d2fd2f 53     public QuotationItemDto() {
F 54     }
55 }