guoshilong
2023-04-04 3e7f2ef80c9fe9853889824aa99b37ccc13b75e9
skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/patrol/mapper/PatrolTypeMapper.java
@@ -2,6 +2,7 @@
import cn.gistack.sm.patrol.entity.PatrolType;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -11,5 +12,5 @@
 */
public interface PatrolTypeMapper extends BaseMapper<PatrolType> {
   List<PatrolType> selectPatrolType(@Param("patrolType") PatrolType patrolType);
   List<PatrolType> selectPatrolType(IPage<PatrolType> page,@Param("patrolType") PatrolType patrolType);
}