GoodsService.java 412 B

123456789101112131415161718
  1. package com.tld.service;
  2. import com.tld.model.Goods;
  3. import javax.servlet.http.HttpServletResponse;
  4. import java.util.Map;
  5. public interface GoodsService {
  6. Map<String, Object> getGoods(Goods goods);
  7. Map<String, Object> addGoods(Goods goods);
  8. Map<String, Object> delGoods(String id);
  9. Map<String, Object> updateGoods(Goods goods);
  10. void export(Goods goods, HttpServletResponse response);
  11. }