1234567891011121314151617 |
- package com.huimv.receive.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.huimv.receive.entity.BaseLocation;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author author
- * @since 2023-07-21
- */
- public interface BaseLocationMapper extends BaseMapper<BaseLocation> {
- int countLocation(String locationName, String farmId);
- }
|