| | |
| | | |
| | | import com.ruoyi.basic.dto.StorageBlobVO; |
| | | import com.ruoyi.sales.pojo.SalesLedger; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class SalesLedgerVo extends SalesLedger { |
| | | |
| | | private List<StorageBlobVO> storageBlobVOs; |
| | | |
| | | @Schema(description = "采购合同号") |
| | | private String purchaseContractNumber; |
| | | |
| | | @Schema(description = "采购台账总合同号") |
| | | private String purchaseMasterContractNo; |
| | | |
| | | @Schema(description = "已退货数量") |
| | | private BigDecimal returnedQuantity; |
| | | |
| | | @Schema(description = "退货状态:无退货/部分退货/全部退货") |
| | | private String returnStatus; |
| | | } |