KKSU
2024-04-17 829f629756e5402bcd3e9f6ef1f9c6dbffbabb11
src/main/java/com/xcong/excoin/modules/yunding/dao/YdProductDao.java
@@ -8,9 +8,13 @@
import com.xcong.excoin.modules.yunding.vo.YdProductVo;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface YdProductDao extends BaseMapper<YdProductEntity> {
    IPage<YdProductVo> getProductList(Page<YdProductVo> page, @Param("record") YdProductListDto ydProductListDto);
    YdProductVo findProductInfoById(@Param("id")Long id);
    List<YdProductEntity> selectXchProductList();
}