123456789101112131415161718 |
- package com.tld.service;
- import com.tld.model.Goods;
- import javax.servlet.http.HttpServletResponse;
- import java.util.Map;
- public interface GoodsService {
- Map<String, Object> getGoods(Goods goods);
- Map<String, Object> addGoods(Goods goods);
- Map<String, Object> delGoods(String id);
- Map<String, Object> updateGoods(Goods goods);
- void export(Goods goods, HttpServletResponse response);
- }
|