增加 spring boot dubbo 用例

This commit is contained in:
luoxiang
2019-01-01 17:45:50 +08:00
parent 236620cacd
commit d472a23eb3
16 changed files with 405 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package com.heibaiying.api;
import com.heibaiying.bean.Product;
import java.util.List;
/**
* @author : heibaiying
* @description : 产品服务接口类
*/
public interface IProductService {
Product queryProductById(int id);
List<Product> queryAllProducts();
}