BillCleanMapper.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.huimv.receive.mapper;
  2. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import com.baomidou.mybatisplus.core.toolkit.Constants;
  5. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  6. import com.huimv.receive.entity.BillClean;
  7. import com.huimv.receive.entity.BillPcr;
  8. import com.huimv.receive.entity.vo.CleanAndDryVo;
  9. import com.huimv.receive.entity.vo.CleanAndDryVo2;
  10. import com.huimv.receive.entity.vo.CleanVo;
  11. import com.huimv.receive.entity.vo.PcrVo1;
  12. import org.apache.ibatis.annotations.Param;
  13. import java.util.List;
  14. /**
  15. * <p>
  16. * 洗消表 Mapper 接口
  17. * </p>
  18. *
  19. * @author author
  20. * @since 2023-07-21
  21. */
  22. public interface BillCleanMapper extends BaseMapper<BillClean> {
  23. Page<CleanAndDryVo> listCleanAndDry(Page<CleanAndDryVo> page, Integer farmId, Integer status);
  24. Page<CleanAndDryVo> listCleanAndDry(Page<CleanAndDryVo> page, Integer farmId);
  25. Page<CleanAndDryVo> listPersonalCleanAndDry(Page<CleanAndDryVo> page, Integer userId, String vistitType);
  26. Page<CleanAndDryVo2> CleanAndDry(Page<CleanAndDryVo2> page, String farmId, String type, String[] status, String[] locations);
  27. Page<CleanAndDryVo2> CleanAndDry2(Page<CleanAndDryVo2> page, String farmId, String[] status);
  28. Page<CleanAndDryVo2> CleanList(Page<CleanAndDryVo2> page, String farmId, String[] status, String location);
  29. List<CleanVo> listAll(@Param(Constants.WRAPPER) QueryWrapper<BillClean> queryWrapper);
  30. }