ITCntrnoService.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package com.ruoyi.shipping.service;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.ruoyi.shipping.domain.TCntrno;
  5. /**
  6. * 集装箱号Service接口
  7. *
  8. * @author ruoyi
  9. * @date 2021-03-22
  10. */
  11. public interface ITCntrnoService
  12. {
  13. /**
  14. * 查询集装箱号
  15. *
  16. * @param fId 集装箱号ID
  17. * @return 集装箱号
  18. */
  19. public TCntrno selectTCntrnoById(Long fId);
  20. /**
  21. * 查询集装箱号列表
  22. *
  23. * @param tCntrno 集装箱号
  24. * @return 集装箱号集合
  25. */
  26. public List<TCntrno> selectTCntrnoList(TCntrno tCntrno);
  27. /**
  28. * 新增集装箱号
  29. *
  30. * @param tCntrno 集装箱号
  31. * @return 结果
  32. */
  33. public int insertTCntrno(TCntrno tCntrno);
  34. /**
  35. * 修改集装箱号
  36. *
  37. * @param tCntrno 集装箱号
  38. * @return 结果
  39. */
  40. public int updateTCntrno(List<TCntrno> tCntrno);
  41. /**
  42. * 修改集装箱号
  43. *
  44. * @param tCntrno 集装箱号
  45. * @return 结果
  46. */
  47. public int updateTCntrnoMessage(TCntrno tCntrno);
  48. /**
  49. * 批量删除集装箱号
  50. *
  51. * @param fIds 需要删除的集装箱号ID
  52. * @return 结果
  53. */
  54. public int deleteTCntrnoByIds(Long[] fIds);
  55. /**
  56. * 删除集装箱号信息
  57. *
  58. * @param fId 集装箱号ID
  59. * @return 结果
  60. */
  61. public int deleteTCntrnoById(Long fId);
  62. /**
  63. * 批量更新数据状态将正常状态改为停用
  64. * @param fIds
  65. * @return
  66. */
  67. public int updateTcntrnoStatus(Long[] fIds);
  68. /**
  69. * 查询集装箱信息
  70. * @param tCntrno
  71. * @return
  72. */
  73. public List<TCntrno> selectTcntrnoMessage(TCntrno tCntrno);
  74. /**
  75. * 获取集装箱信息
  76. * @param tCntrno
  77. * @return
  78. */
  79. public List<Map<String, Object>> getTCntrnoMessage(TCntrno tCntrno);
  80. /**
  81. * 获取集装箱分布信息
  82. * @param tCntrno
  83. * @return
  84. */
  85. public List<TCntrno> getTCntrnoDistribute(TCntrno tCntrno);
  86. /**
  87. * 获取集装箱动态分布标签
  88. * @param tCntrno
  89. * @return
  90. */
  91. public List<String> getTCntrnoChange(TCntrno tCntrno);
  92. /**
  93. * 查询编号唯一性
  94. * @param tCntrno
  95. * @return
  96. */
  97. public String selectTCntrnoFNo(TCntrno tCntrno);
  98. }