Pu Zhibing
2025-01-15 610a3809285a5476c25151aa699161bb5f0fc750
ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/ShopPointMapper.java
@@ -1,7 +1,9 @@
package com.ruoyi.other.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.ruoyi.other.api.domain.ShopPoint;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -15,6 +17,9 @@
 */
public interface ShopPointMapper extends BaseMapper<ShopPoint> {
    List<ShopPoint> findLatestChangeByType(ShopPoint shopPoint);
    List<ShopPoint> selectShopPointList(@Param("shopPoint") ShopPoint shopPoint);
    IPage<ShopPoint> queryShpointPage(@Param("page") IPage<ShopPoint> page,@Param("shopPoint") ShopPoint shopPoint);
}