mirror of
https://github.com/Estom/notes.git
synced 2026-02-07 04:23:55 +08:00
Java内容重新整理删除过期的东西
This commit is contained in:
20
Java/JavaDemo/codedemo/mockito/CommodityDao.java
Normal file
20
Java/JavaDemo/codedemo/mockito/CommodityDao.java
Normal file
@@ -0,0 +1,20 @@
|
||||
package cn.aofeng.demo.mockito;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 商品存储层。
|
||||
*
|
||||
* @author <a href="mailto:aofengblog@163.com">聂勇</a>
|
||||
*/
|
||||
public class CommodityDao {
|
||||
|
||||
public Commodity queryById(String id) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public List<Commodity> queryByType(int type) {
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user