package com.doumee.dao.business.model.dto; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.math.BigDecimal; @Data public class PreselectOrderItemDTO { private Integer categoryId; private String categoryName; private Integer subCategoryId; private String subCategoryName; private Integer goodsId; @ApiModelProperty("产品型号") private String goodsName; @ApiModelProperty("旗舰价") private BigDecimal zdPrice; @ApiModelProperty("指导价") private BigDecimal price; }