mirror of
https://github.com/Estom/notes.git
synced 2026-02-04 19:13:24 +08:00
21 lines
335 B
Java
21 lines
335 B
Java
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;
|
|
}
|
|
|
|
}
|