| | |
| | | |
| | | @Schema(description = "供应商编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1724") |
| | | private Long supplierId; |
| | | @Schema(description = "供应商名称", example = "芋道") |
| | | @Schema(description = "供应商名称", example = "超级管理员") |
| | | @ExcelProperty("供应商名称") |
| | | private String supplierName; |
| | | |
| | |
| | | |
| | | @Schema(description = "合计税额,单位:元", requiredMode = Schema.RequiredMode.REQUIRED, example = "7127") |
| | | private BigDecimal totalTaxPrice; |
| | | |
| | | @Schema(description = "剩余可开票金额(订单总金额 - 已来票金额),单位:元", example = "100.00") |
| | | private BigDecimal remainInvoicePrice; |
| | | |
| | | @Schema(description = "优惠率,百分比", requiredMode = Schema.RequiredMode.REQUIRED, example = "99.88") |
| | | private BigDecimal discountPercent; |
| | |
| | | @Schema(description = "附件列表") |
| | | private List<StorageBlobRespDTO> attachmentList; |
| | | |
| | | @Schema(description = "创建人", example = "芋道") |
| | | @Schema(description = "创建人", example = "超级管理员") |
| | | private String creator; |
| | | @Schema(description = "创建人名称", example = "芋道") |
| | | @Schema(description = "创建人名称", example = "超级管理员") |
| | | private String creatorName; |
| | | |
| | | @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |