BaseLocationMapper.java 354 B

1234567891011121314151617
  1. package com.huimv.receive.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.huimv.receive.entity.BaseLocation;
  4. /**
  5. * <p>
  6. * Mapper 接口
  7. * </p>
  8. *
  9. * @author author
  10. * @since 2023-07-21
  11. */
  12. public interface BaseLocationMapper extends BaseMapper<BaseLocation> {
  13. int countLocation(String locationName, String farmId);
  14. }