| | |
| | | package com.ruoyi.account.bean.vo.sales; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | |
| | | |
| | | @Schema(description = "出库单id") |
| | | private Long id; |
| | | |
| | | @Schema(description = "出库绑定行id。油品出库按客户拆分的行才有值,与 id 是两个独立 id 空间;手工发货单出库为 null") |
| | | @ExcelIgnore |
| | | private Long bindingId; |
| | | |
| | | @Schema(description = "出库单号") |
| | | @Excel(name = "出库单号") |
| | |
| | | @Schema(description = "销售订单号") |
| | | @Excel(name = "销售订单号") |
| | | private String salesContractNo; |
| | | |
| | | @Schema(description = "已收款金额") |
| | | @ExcelIgnore |
| | | private BigDecimal amountReceived; |
| | | } |