fhx
2023-08-08 d2fd2fcc174448b769e5e1a112eb54604215e3b5
提交 | 用户 | 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;
8
9 /**
10  * 报价单子项dto
11  * @USER: fhx
12  * @DATE: 2023/8/8
13  **/
14 @Data
15 public class QuotationItemDto {
16
17     /** QuotationItem表id */
18     private String id;
19
20     /** 关联类型 */
21     private String relateType;
22     /** 关联标识(适应症/标签) */
23     private String relateId;
24     /** 关联名称(冗余) */
25     private String relateName;
26
27     /** 商品类型(OrderItemConstants) */
28     @Column(comment = "", length = 20, type = MySqlTypeConstant.VARCHAR,isNull = false)
29     private String type;
30     /** 项目id/商品id/套餐id/其他id  */
31     private String goodsId;
32     /** 项目编号/商品编码/套餐编码/其他编码 */
33     private String goodsNo;
34     /** 项目名称/商品名称 */
35     private String goodsName;
36
37     /** 身体部位名称 */
38     private String bodyPartsName;
39     /** 规格 */
40     private String specs;
41     /** 单位 */
42     private String unit;
43     /** 医生资质 */
44     private String doctorQualification;
45
46     /** 项目原价 */
47     private BigDecimal oriPrice;
48     /** 售价 */
49     private BigDecimal price;
50     /** 购买数量 */
51     private Integer buyNum;
52
53     public QuotationItemDto() {
54     }
55 }