| | |
| | | package com.ruoyi.sales.service; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.sales.dto.MonthlyAmountDto; |
| | | import com.ruoyi.sales.dto.SalesLedgerDto; |
| | | import com.ruoyi.sales.pojo.SalesLedger; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 销售台账Service接口 |
| | |
| | | int addOrUpdateSalesLedger(SalesLedgerDto salesLedgerDto); |
| | | |
| | | SalesLedgerDto getSalesLedgerWithProducts(SalesLedgerDto salesLedgerDto); |
| | | |
| | | List getSalesNo(); |
| | | |
| | | BigDecimal getContractAmount(); |
| | | |
| | | List getTopFiveList(); |
| | | |
| | | List<MonthlyAmountDto> getAmountHalfYear(); |
| | | } |