| | |
| | | import com.ruoyi.basic.pojo.Customer; |
| | | import com.ruoyi.basic.vo.CustomerVo; |
| | | import com.ruoyi.framework.web.domain.R; |
| | | import com.ruoyi.sales.vo.CustomerTransactionsDetailsVo; |
| | | import com.ruoyi.sales.vo.CustomerTransactionsVo; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | |
| | | void together(CustomerDto customerDto); |
| | | |
| | | Boolean back(Long id); |
| | | |
| | | /** |
| | | * 查询客户往来列表 |
| | | * @param page |
| | | * @param customerName |
| | | * @return |
| | | */ |
| | | IPage<CustomerTransactionsVo> customewTransactions(Page page, String customerName); |
| | | |
| | | /** |
| | | * 查询客户往来明细列表 |
| | | * @param page |
| | | * @param customerId |
| | | * @return |
| | | */ |
| | | IPage<CustomerTransactionsDetailsVo> customewTransactionsDetails(Page page, Long customerId); |
| | | } |