IBillLuggageService.java 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. package com.huimv.receive.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.huimv.receive.common.utils.Result;
  4. import com.huimv.receive.entity.BillLuggage;
  5. import org.springframework.web.multipart.MultipartFile;
  6. import javax.servlet.http.HttpServletRequest;
  7. import javax.servlet.http.HttpServletResponse;
  8. import java.io.IOException;
  9. import java.util.Map;
  10. /**
  11. * <p>
  12. * 服务类
  13. * </p>
  14. *
  15. * @author author
  16. * @since 2023-07-24
  17. */
  18. public interface IBillLuggageService extends IService<BillLuggage> {
  19. Result addLuggage(HttpServletRequest httpServletRequest,String farmId, String userName, String phone, String luggageDate, String luggageLocation, String luggageLocationId, Integer luggageNum, MultipartFile img, MultipartFile img2, MultipartFile img3, MultipartFile img4, MultipartFile img5) throws IOException;
  20. Result listPersonalLuggage(HttpServletRequest httpServletRequest, Map<String, String> paramsMap);
  21. Result listLuggage(HttpServletRequest httpServletRequest, Map<String, String> paramsMap);
  22. Result selectLuggage(HttpServletRequest httpServletRequest, Map<String, String> paramsMap);
  23. //导出
  24. void printLuggage(HttpServletResponse httpServletRequest, Map<String, String> paramsMap) throws Exception;
  25. }