43 lines
1.0 KiB
Java
43 lines
1.0 KiB
Java
package com.gxwebsoft.tower.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.gxwebsoft.common.core.web.PageResult;
|
|
import com.gxwebsoft.tower.entity.TowerInvoicingSettle;
|
|
import com.gxwebsoft.tower.param.TowerInvoicingSettleParam;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 开票结算单分摊Service
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2023-06-17 12:47:08
|
|
*/
|
|
public interface TowerInvoicingSettleService extends IService<TowerInvoicingSettle> {
|
|
|
|
/**
|
|
* 分页关联查询
|
|
*
|
|
* @param param 查询参数
|
|
* @return PageResult<TowerInvoicingSettle>
|
|
*/
|
|
PageResult<TowerInvoicingSettle> pageRel(TowerInvoicingSettleParam param);
|
|
|
|
/**
|
|
* 关联查询全部
|
|
*
|
|
* @param param 查询参数
|
|
* @return List<TowerInvoicingSettle>
|
|
*/
|
|
List<TowerInvoicingSettle> listRel(TowerInvoicingSettleParam param);
|
|
|
|
/**
|
|
* 根据id查询
|
|
*
|
|
* @param invoicingSettleId
|
|
* @return TowerInvoicingSettle
|
|
*/
|
|
TowerInvoicingSettle getByIdRel(Integer invoicingSettleId);
|
|
|
|
}
|