TVoyage.java 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. package com.ruoyi.shipping.domain;
  2. import java.util.Date;
  3. import java.util.List;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import com.ruoyi.common.annotation.Excel;
  8. import com.ruoyi.common.core.domain.BaseEntity;
  9. /**
  10. * 航次对象 t_voyage
  11. *
  12. * @author ruoyi
  13. * @date 2021-04-02
  14. */
  15. public class TVoyage extends BaseEntity
  16. {
  17. private static final long serialVersionUID = 1L;
  18. /** 主键 */
  19. private Long fId;
  20. /** 船名id(t_vessel f_id) */
  21. private Long fPid;
  22. /**船名中文*/
  23. @Excel(name = "船名")
  24. private String pidName;
  25. /** 航次 */
  26. @Excel(name = "航次")
  27. private String fNo;
  28. //装货港名称
  29. @Excel(name = "装货港")
  30. private String portofloadidName;
  31. //卸货港名称
  32. @Excel(name = "卸货港")
  33. private String portofdischargeidName;
  34. //目的港名称
  35. @Excel(name = "目的港")
  36. private String distinationidName;
  37. //中转港名称
  38. @Excel(name = "中转港")
  39. private String portoftransshipmentName;
  40. /** 装货港 */
  41. private Long fPortofloadid;
  42. /** 卸货港 */
  43. private Long fPortofdischargeid;
  44. /** 目的港 */
  45. private Long fDistinationid;
  46. /** 中转港 */
  47. private Long fPortoftransshipment;
  48. /** 预计开船日期 */
  49. @JsonFormat(pattern = "yyyy-MM-dd")
  50. @Excel(name = "预计开船日期", width = 30, dateFormat = "yyyy-MM-dd")
  51. private Date fEtd;
  52. /** 开船日期 */
  53. @JsonFormat(pattern = "yyyy-MM-dd")
  54. @Excel(name = "开船日期", width = 30, dateFormat = "yyyy-MM-dd")
  55. private Date fAtd;
  56. /** 预计到达日期 */
  57. @JsonFormat(pattern = "yyyy-MM-dd")
  58. @Excel(name = "预计到达日期", width = 30, dateFormat = "yyyy-MM-dd")
  59. private Date fEta;
  60. /** 到港日 */
  61. @JsonFormat(pattern = "yyyy-MM-dd")
  62. @Excel(name = "到港日", width = 30, dateFormat = "yyyy-MM-dd")
  63. private Date fAta;
  64. /** 航期 */
  65. @Excel(name = "航期")
  66. private Long fDays;
  67. /** 截单日期 */
  68. @JsonFormat(pattern = "yyyy-MM-dd")
  69. @Excel(name = "截单日期", width = 30, dateFormat = "yyyy-MM-dd")
  70. private Date fDucomentrayoffdate;
  71. /** 截港日期 */
  72. @JsonFormat(pattern = "yyyy-MM-dd")
  73. @Excel(name = "截港日期", width = 30, dateFormat = "yyyy-MM-dd")
  74. private Date fCutoffdate;
  75. /** $column.columnComment */
  76. @Excel(name = "截港日期")
  77. private String fTeu;
  78. //管船人名称
  79. @Excel(name = "管船人")
  80. private String manageidName;
  81. /** 管船人 */
  82. private Long fManageid;
  83. /** 电话 */
  84. @Excel(name = "电话")
  85. private String fTel;
  86. /** 默认 T ,正常T 停用F 下拉选择 */
  87. @Excel(name = "状态")
  88. private String fStatus;
  89. /** 航线 */
  90. private Integer fLaneid;
  91. //航线名称
  92. @Excel(name = "航线")
  93. private String fLaneName;
  94. //查询时间区间
  95. private List<String> cLoadDate;
  96. //最低运费
  97. private String twenty;
  98. //最低运费
  99. private String fortyHc;
  100. //最低运费
  101. private String fortyRh;
  102. //截单日期
  103. private Long closing;
  104. //详细信息
  105. private List<TVoyage> freight;
  106. //中转港是否为空
  107. private Long empty;
  108. //运价信息
  109. private List<TCtnpriceItems> tCtnpriceItemsList;
  110. public List<TCtnpriceItems> gettCtnpriceItemsList() {
  111. return tCtnpriceItemsList;
  112. }
  113. public void settCtnpriceItemsList(List<TCtnpriceItems> tCtnpriceItemsList) {
  114. this.tCtnpriceItemsList = tCtnpriceItemsList;
  115. }
  116. public String getfLaneName() {
  117. return fLaneName;
  118. }
  119. public void setfLaneName(String fLaneName) {
  120. this.fLaneName = fLaneName;
  121. }
  122. public Integer getfLaneid() {
  123. return fLaneid;
  124. }
  125. public void setfLaneid(Integer fLaneid) {
  126. this.fLaneid = fLaneid;
  127. }
  128. public Long getEmpty() {
  129. return empty;
  130. }
  131. public void setEmpty(Long empty) {
  132. this.empty = empty;
  133. }
  134. public Long getClosing() {
  135. return closing;
  136. }
  137. public void setClosing(Long closing) {
  138. this.closing = closing;
  139. }
  140. public List<TVoyage> getFreight() {
  141. return freight;
  142. }
  143. public void setFreight(List<TVoyage> freight) {
  144. this.freight = freight;
  145. }
  146. public String getTwenty() {
  147. return twenty;
  148. }
  149. public void setTwenty(String twenty) {
  150. this.twenty = twenty;
  151. }
  152. public String getFortyHc() {
  153. return fortyHc;
  154. }
  155. public void setFortyHc(String fortyHc) {
  156. this.fortyHc = fortyHc;
  157. }
  158. public String getFortyRh() {
  159. return fortyRh;
  160. }
  161. public void setFortyRh(String fortyRh) {
  162. this.fortyRh = fortyRh;
  163. }
  164. public String getPidName() {
  165. return pidName;
  166. }
  167. public void setPidName(String pidName) {
  168. this.pidName = pidName;
  169. }
  170. public String getPortofloadidName() {
  171. return portofloadidName;
  172. }
  173. public void setPortofloadidName(String portofloadidName) {
  174. this.portofloadidName = portofloadidName;
  175. }
  176. public String getPortofdischargeidName() {
  177. return portofdischargeidName;
  178. }
  179. public void setPortofdischargeidName(String portofdischargeidName) {
  180. this.portofdischargeidName = portofdischargeidName;
  181. }
  182. public String getDistinationidName() {
  183. return distinationidName;
  184. }
  185. public void setDistinationidName(String distinationidName) {
  186. this.distinationidName = distinationidName;
  187. }
  188. public String getPortoftransshipmentName() {
  189. return portoftransshipmentName;
  190. }
  191. public void setPortoftransshipmentName(String portoftransshipmentName) {
  192. this.portoftransshipmentName = portoftransshipmentName;
  193. }
  194. public String getManageidName() {
  195. return manageidName;
  196. }
  197. public void setManageidName(String manageidName) {
  198. this.manageidName = manageidName;
  199. }
  200. public List<String> getcLoadDate() {
  201. return cLoadDate;
  202. }
  203. public void setcLoadDate(List<String> cLoadDate) {
  204. this.cLoadDate = cLoadDate;
  205. }
  206. public void setfId(Long fId)
  207. {
  208. this.fId = fId;
  209. }
  210. public Long getfId()
  211. {
  212. return fId;
  213. }
  214. public void setfPid(Long fPid)
  215. {
  216. this.fPid = fPid;
  217. }
  218. public Long getfPid()
  219. {
  220. return fPid;
  221. }
  222. public void setfNo(String fNo)
  223. {
  224. this.fNo = fNo;
  225. }
  226. public String getfNo()
  227. {
  228. return fNo;
  229. }
  230. public void setfPortofloadid(Long fPortofloadid)
  231. {
  232. this.fPortofloadid = fPortofloadid;
  233. }
  234. public Long getfPortofloadid()
  235. {
  236. return fPortofloadid;
  237. }
  238. public void setfPortofdischargeid(Long fPortofdischargeid)
  239. {
  240. this.fPortofdischargeid = fPortofdischargeid;
  241. }
  242. public Long getfPortofdischargeid()
  243. {
  244. return fPortofdischargeid;
  245. }
  246. public void setfDistinationid(Long fDistinationid)
  247. {
  248. this.fDistinationid = fDistinationid;
  249. }
  250. public Long getfDistinationid()
  251. {
  252. return fDistinationid;
  253. }
  254. public void setfPortoftransshipment(Long fPortoftransshipment)
  255. {
  256. this.fPortoftransshipment = fPortoftransshipment;
  257. }
  258. public Long getfPortoftransshipment()
  259. {
  260. return fPortoftransshipment;
  261. }
  262. public void setfEtd(Date fEtd)
  263. {
  264. this.fEtd = fEtd;
  265. }
  266. public Date getfEtd()
  267. {
  268. return fEtd;
  269. }
  270. public void setfAtd(Date fAtd)
  271. {
  272. this.fAtd = fAtd;
  273. }
  274. public Date getfAtd()
  275. {
  276. return fAtd;
  277. }
  278. public void setfEta(Date fEta)
  279. {
  280. this.fEta = fEta;
  281. }
  282. public Date getfEta()
  283. {
  284. return fEta;
  285. }
  286. public void setfAta(Date fAta)
  287. {
  288. this.fAta = fAta;
  289. }
  290. public Date getfAta()
  291. {
  292. return fAta;
  293. }
  294. public void setfDays(Long fDays)
  295. {
  296. this.fDays = fDays;
  297. }
  298. public Long getfDays()
  299. {
  300. return fDays;
  301. }
  302. public void setfDucomentrayoffdate(Date fDucomentrayoffdate)
  303. {
  304. this.fDucomentrayoffdate = fDucomentrayoffdate;
  305. }
  306. public Date getfDucomentrayoffdate()
  307. {
  308. return fDucomentrayoffdate;
  309. }
  310. public void setfCutoffdate(Date fCutoffdate)
  311. {
  312. this.fCutoffdate = fCutoffdate;
  313. }
  314. public Date getfCutoffdate()
  315. {
  316. return fCutoffdate;
  317. }
  318. public void setfTeu(String fTeu)
  319. {
  320. this.fTeu = fTeu;
  321. }
  322. public String getfTeu()
  323. {
  324. return fTeu;
  325. }
  326. public void setfManageid(Long fManageid)
  327. {
  328. this.fManageid = fManageid;
  329. }
  330. public Long getfManageid()
  331. {
  332. return fManageid;
  333. }
  334. public void setfTel(String fTel)
  335. {
  336. this.fTel = fTel;
  337. }
  338. public String getfTel()
  339. {
  340. return fTel;
  341. }
  342. public void setfStatus(String fStatus)
  343. {
  344. this.fStatus = fStatus;
  345. }
  346. public String getfStatus()
  347. {
  348. return fStatus;
  349. }
  350. @Override
  351. public String toString() {
  352. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  353. .append("fId", getfId())
  354. .append("fPid", getfPid())
  355. .append("fNo", getfNo())
  356. .append("fPortofloadid", getfPortofloadid())
  357. .append("fPortofdischargeid", getfPortofdischargeid())
  358. .append("fDistinationid", getfDistinationid())
  359. .append("fPortoftransshipment", getfPortoftransshipment())
  360. .append("fEtd", getfEtd())
  361. .append("fAtd", getfAtd())
  362. .append("fEta", getfEta())
  363. .append("fAta", getfAta())
  364. .append("fDays", getfDays())
  365. .append("fDucomentrayoffdate", getfDucomentrayoffdate())
  366. .append("fCutoffdate", getfCutoffdate())
  367. .append("fTeu", getfTeu())
  368. .append("fManageid", getfManageid())
  369. .append("fTel", getfTel())
  370. .append("fStatus", getfStatus())
  371. .append("createBy", getCreateBy())
  372. .append("createTime", getCreateTime())
  373. .append("updateBy", getUpdateBy())
  374. .append("updateTime", getUpdateTime())
  375. .append("remark", getRemark())
  376. .append("fLaneid", getfLaneid())
  377. .toString();
  378. }
  379. }