ITCntrnoService.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. package com.ruoyi.shipping.service;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.ruoyi.common.core.domain.AjaxResult;
  5. import com.ruoyi.common.core.domain.entity.SysUser;
  6. import com.ruoyi.common.core.domain.model.LoginUser;
  7. import com.ruoyi.shipping.domain.TCntrno;
  8. import com.ruoyi.shipping.excel.BoxDistributionStatistics;
  9. import org.springframework.web.multipart.MultipartFile;
  10. /**
  11. * 集装箱号Service接口
  12. *
  13. * @author ruoyi
  14. * @date 2021-03-22
  15. */
  16. public interface ITCntrnoService
  17. {
  18. /**
  19. * 查询集装箱号
  20. *
  21. * @param fId 集装箱号ID
  22. * @return 集装箱号
  23. */
  24. public TCntrno selectTCntrnoById(Long fId);
  25. /**
  26. * 查询集装箱号列表
  27. *
  28. * @param tCntrno 集装箱号
  29. * @return 集装箱号集合
  30. */
  31. public List<TCntrno> selectTCntrnoList(TCntrno tCntrno);
  32. /**
  33. * 新增集装箱号
  34. *
  35. * @param tCntrno 集装箱号
  36. * @return 结果
  37. */
  38. public int insertTCntrno(TCntrno tCntrno);
  39. /**
  40. * 修改集装箱号
  41. *
  42. * @param tCntrno 集装箱号
  43. * @return 结果
  44. */
  45. public int updateTCntrno(List<TCntrno> tCntrno);
  46. /**
  47. * 保存场站动态信息
  48. *
  49. * @param tCntrno 集装箱号
  50. * @return 结果
  51. */
  52. public AjaxResult updateAirForceStation(List<TCntrno> tCntrno);
  53. /**
  54. * 修改集装箱号
  55. *
  56. * @param tCntrno 集装箱号
  57. * @return 结果
  58. */
  59. public int updateTCntrnoMessage(TCntrno tCntrno);
  60. /**
  61. * 批量删除集装箱号
  62. *
  63. * @param fIds 需要删除的集装箱号ID
  64. * @return 结果
  65. */
  66. public int deleteTCntrnoByIds(Long[] fIds);
  67. /**
  68. * 删除集装箱号信息
  69. *
  70. * @param fId 集装箱号ID
  71. * @return 结果
  72. */
  73. public int deleteTCntrnoById(Long fId);
  74. /**
  75. * 批量更新数据状态将正常状态改为停用
  76. * @param fIds
  77. * @return
  78. */
  79. public int updateTcntrnoStatus(Long[] fIds);
  80. /**
  81. * 查询集装箱信息
  82. * @param tCntrno
  83. * @return
  84. */
  85. public List<TCntrno> selectTcntrnoMessage(TCntrno tCntrno);
  86. /**
  87. * 获取集装箱信息
  88. * @param tCntrno
  89. * @return
  90. */
  91. public List<Map<String, Object>> getTCntrnoMessage(TCntrno tCntrno);
  92. /**
  93. * 获取集装箱分布信息
  94. * @param tCntrno
  95. * @return
  96. */
  97. public List<TCntrno> getTCntrnoDistribute(TCntrno tCntrno);
  98. /**
  99. * 获取集装箱动态分布标签
  100. * @param tCntrno
  101. * @return
  102. */
  103. public List<String> getTCntrnoChange(TCntrno tCntrno);
  104. /**
  105. * 查询编号唯一性
  106. * @param tCntrno
  107. * @return
  108. */
  109. public String selectTCntrnoFNo(TCntrno tCntrno);
  110. /**
  111. * 更新箱信息数据
  112. * @param fileName 更新箱信息数据列表
  113. * @return 结果
  114. */
  115. public AjaxResult importUpdateDataTcntrnoExcel(MultipartFile fileName);
  116. /**
  117. * 导入箱信息数据Excel
  118. * @param fileName 更新箱信息数据列表
  119. * @return 结果
  120. */
  121. public AjaxResult importTcntrnoDataExcel(MultipartFile fileName);
  122. /**
  123. * 导入Excel生成箱信息
  124. * @param file excel
  125. * @return 结果
  126. */
  127. public AjaxResult importCreateCompanyMsg(MultipartFile file) throws Exception;
  128. /**
  129. * 批量新增箱信息
  130. * @param tCntrno
  131. * @return
  132. */
  133. public AjaxResult batch(String tCntrno, LoginUser loginUser);
  134. /**
  135. * 获取 箱号、地点、空重
  136. * @param tCntrno
  137. * @return
  138. */
  139. public List<Map<String, Object>> getTcntrnoFno(TCntrno tCntrno);
  140. /**
  141. * 导入场站动态
  142. * @param file excel
  143. * @return 结果
  144. */
  145. public AjaxResult importAirForceStation(MultipartFile file)throws Exception;
  146. /**
  147. * 箱分布统计
  148. * @param
  149. * @return
  150. */
  151. public List<BoxDistributionStatistics> boxDistributedStatistics();
  152. /**
  153. * 首页获取箱分布
  154. * @return
  155. */
  156. public List<Map<String,Object>>homeBox();
  157. }