| | |
| | | @Schema(description = "优惠率,百分比", example = "10") |
| | | private BigDecimal discountPercent; |
| | | |
| | | @Schema(description = "附件地址", example = "https://xxx.com/xxx.pdf") |
| | | private String fileUrl; |
| | | @Schema(description = "定金金额", example = "1000.00") |
| | | private BigDecimal depositPrice; |
| | | |
| | | @Schema(description = "备注", example = "备注") |
| | | private String remark; |
| | |
| | | @Schema(description = "备注", example = "备注") |
| | | private String remark; |
| | | |
| | | @Schema(description = "是否需要来料检验", example = "true") |
| | | private Boolean qcCheckFlag; |
| | | |
| | | @Schema(description = "产品名称(前端展示用,后端忽略)", example = "产品A") |
| | | private String productName; |
| | | |