| | |
| | | package com.ruoyi.purchase.dto; |
| | | |
| | | import com.ruoyi.purchase.pojo.PurchaseReturnOrderProducts; |
| | | import com.ruoyi.purchase.pojo.PurchaseReturnOrders; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.util.List; |
| | | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Data |
| | | public class PurchaseReturnOrderDto extends PurchaseReturnOrders { |
| | | // 是否使用系统单号 |
| | | private Boolean isDefaultNo; |
| | | |
| | | private String supplierName; |
| | | |
| | | private List<PurchaseReturnOrderProductsDto> purchaseReturnOrderProductsDtos; |
| | | |
| | | private Long[] deptIds; |
| | | } |