| | |
| | | |
| | | import com.ruoyi.sales.pojo.SalesQuotation; |
| | | import com.ruoyi.sales.pojo.SalesQuotationProduct; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class SalesQuotationDto extends SalesQuotation { |
| | | @ApiModelProperty(value = "报价商品") |
| | | @Schema(description = "报价商品") |
| | | private List<SalesQuotationProduct> products; |
| | | |
| | | /** |
| | | * 审批人id列表 |
| | | */ |
| | | // 审批人 |
| | | private String approveUserIds; |
| | | |
| | | private Long templateId; |
| | | |
| | | @Schema(description = "项目名称") |
| | | private String projectName; |
| | | } |