| | |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import java.io.FileNotFoundException; |
| | | import java.io.IOException; |
| | | import java.io.InputStream; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 查询采购台账和产品父子列表 |
| | | */ |
| | | @GetMapping("/getPurchaseByCode") |
| | | public PurchaseLedgerDto getPurchaseByCode(PurchaseLedgerDto purchaseLedgerDto) { |
| | | return purchaseLedgerService.getPurchaseByCode(purchaseLedgerDto); |
| | | } |
| | | |
| | | /** |
| | | * 删除采购台账 |
| | | */ |
| | | @Log(title = "采购台账", businessType = BusinessType.DELETE) |