CostDocumentWhDao.java 983 B

123456789101112131415161718192021222324
  1. package com.hotent.baseInfo.dao;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.hotent.baseInfo.model.CostDocumentWh;
  4. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  5. import org.apache.ibatis.annotations.Param;
  6. /**
  7. * 文书文号管理表 Mapper 接口
  8. *
  9. * @company 山西清众科技股份有限公司
  10. * @author 超级管理员
  11. * @since 2025-09-14
  12. */
  13. public interface CostDocumentWhDao extends BaseMapper<CostDocumentWh> {
  14. Page<CostDocumentWh> getPageList(Page<CostDocumentWh> page,
  15. @Param("dataScope") Integer dataScope,
  16. @Param("provinceCode") String provinceCode,
  17. @Param("cityCode") String cityCode,
  18. @Param("countyCode") String countyCode,
  19. @Param("whType") String whType,
  20. @Param("whName") String whName);
  21. }