| 123456789101112131415161718192021222324 |
- package com.hotent.baseInfo.dao;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.hotent.baseInfo.model.CostDocumentWh;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- /**
- * 文书文号管理表 Mapper 接口
- *
- * @company 山西清众科技股份有限公司
- * @author 超级管理员
- * @since 2025-09-14
- */
- public interface CostDocumentWhDao extends BaseMapper<CostDocumentWh> {
- Page<CostDocumentWh> getPageList(Page<CostDocumentWh> page,
- @Param("dataScope") Integer dataScope,
- @Param("provinceCode") String provinceCode,
- @Param("cityCode") String cityCode,
- @Param("countyCode") String countyCode,
- @Param("whType") String whType,
- @Param("whName") String whName);
- }
|