Helius
2021-06-01 f95df31ceef45cf6486a1bf5be90e5e4075fdb1a
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();
}