fhx
2024-04-11 8aabd6f9a44fb4de7ef2c70ff0a15fc000f4b5d9
phis-feign/src/main/java/com/hz/his/dto/quotation/QuotationItemDto.java
@@ -5,6 +5,7 @@
import lombok.Data;
import java.math.BigDecimal;
import java.util.List;
/**
 * 报价单子项dto
@@ -18,11 +19,7 @@
    private String id;
    /** 关联类型 */
    private String relateType;
    /** 关联标识(适应症/标签) */
    private String relateId;
    /** 关联名称(冗余) */
    private String relateName;
    private String assocType;
    /** 商品类型(OrderItemConstants) */
    @Column(comment = "", length = 20, type = MySqlTypeConstant.VARCHAR,isNull = false)
@@ -50,6 +47,9 @@
    /** 购买数量 */
    private Integer buyNum;
    /** 多关联信息 */
    private List<QuotationItemAssocDto> itemAssocList;
    public QuotationItemDto() {
    }
}