xiaoyong931011
2021-05-28 6a0e1564efae8aa6069bddedef749bf5c8b9b0c4
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();
}