| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.dto.OfflinePayCheckDto; |
| | | import com.ruoyi.system.dto.SmsByBillDto; |
| | | import com.ruoyi.system.dto.TBillDto; |
| | | import com.ruoyi.system.dto.TbillSaveDto; |
| | | import com.ruoyi.system.model.TBill; |
| | |
| | | * @return |
| | | */ |
| | | PageInfo<TBillDto> invoiceList(TBillQuery query); |
| | | |
| | | /** |
| | | * 根据发票编号查询账单列表 |
| | | * @param invoiceId |
| | | * @return |
| | | */ |
| | | PageInfo<TBill> getBillByInvoiceId(String invoiceId); |
| | | |
| | | Integer sendSmsByBillIds(SmsByBillDto dto); |
| | | |
| | | Integer sendMailBatchByBillIds(SmsByBillDto dto); |
| | | } |