TSeaprice.java 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. package com.ruoyi.quotation.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import com.ruoyi.common.core.domain.BaseEntity;
  5. import java.math.BigDecimal;
  6. import java.util.Arrays;
  7. import java.util.Date;
  8. import java.util.List;
  9. /**
  10. * 海运价主对象 t_seaprice
  11. *
  12. * @author ruoyi
  13. * @date 2021-06-01
  14. */
  15. public class TSeaprice extends BaseEntity
  16. {
  17. private static final long serialVersionUID = 1L;
  18. /** $column.columnComment */
  19. private Long fId;
  20. /** 业务类型 */
  21. @Excel(name = "业务类型")
  22. private Long fBilltype;
  23. /** 船公司(客户表) */
  24. @Excel(name = "船公司(客户表)")
  25. private Long fCorpid;
  26. /** 起运港ID */
  27. @Excel(name = "起运港ID")
  28. private Long polId;
  29. /** 目的港ID */
  30. @Excel(name = "目的港ID")
  31. private Long podId;
  32. /** 有效期 */
  33. @JsonFormat(pattern = "yyyy-MM-dd")
  34. @Excel(name = "有效期", width = 30, dateFormat = "yyyy-MM-dd")
  35. private Date fValiddate;
  36. /** 校验时间戳 */
  37. private String fDateChanged;
  38. /** 状态(0有效1无效) */
  39. @Excel(name = "状态(0有效1无效)")
  40. private Long fBillstatus;
  41. /** 删除状态 */
  42. private String delFlag;
  43. /** 备注 */
  44. @Excel(name = "备注")
  45. private String remarks;
  46. /** 折合后的rmb */
  47. private BigDecimal rmb;
  48. /** 筛选条件箱类型 */
  49. private String fSpecification;
  50. /** 箱量 */
  51. private Long fQty;
  52. /** 类型 */
  53. private String fType;
  54. /** 海运费 */
  55. private BigDecimal shippingFee;
  56. /** 汇率 */
  57. private BigDecimal exrate;
  58. /** 需要删除的规则表 */
  59. private Long[] deleteItem0;
  60. /** 需要删除的固定费用表 */
  61. private Long[] deleteItem1;
  62. /** 需要删除的固定费用表 */
  63. private List<String> validdateList;
  64. //新增字段20210708 dongyongwei begin
  65. /** 航线ID */
  66. private String fLineid;
  67. /** 订舱代理ID */
  68. private String fBookagentid;
  69. /** 航线名称 */
  70. private String fLineName;
  71. /** 订舱代理名称 */
  72. private String fBookagentName;
  73. public String getfLineName() {
  74. return fLineName;
  75. }
  76. public void setfLineName(String fLineName) {
  77. this.fLineName = fLineName;
  78. }
  79. public String getfBookagentName() {
  80. return fBookagentName;
  81. }
  82. public void setfBookagentName(String fBookagentName) {
  83. this.fBookagentName = fBookagentName;
  84. }
  85. public String getfLineid() {
  86. return fLineid;
  87. }
  88. public void setfLineid(String fLineid) {
  89. this.fLineid = fLineid;
  90. }
  91. public String getfBookagentid() {
  92. return fBookagentid;
  93. }
  94. public void setfBookagentid(String fBookagentid) {
  95. this.fBookagentid = fBookagentid;
  96. }
  97. //新增字段20210708 dongyongwei end
  98. public void setfId(Long fId)
  99. {
  100. this.fId = fId;
  101. }
  102. public Long getfId()
  103. {
  104. return fId;
  105. }
  106. public void setfBilltype(Long fBilltype)
  107. {
  108. this.fBilltype = fBilltype;
  109. }
  110. public Long getfBilltype()
  111. {
  112. return fBilltype;
  113. }
  114. public void setfCorpid(Long fCorpid)
  115. {
  116. this.fCorpid = fCorpid;
  117. }
  118. public Long getfCorpid()
  119. {
  120. return fCorpid;
  121. }
  122. public void setPolId(Long polId)
  123. {
  124. this.polId = polId;
  125. }
  126. public Long getPolId()
  127. {
  128. return polId;
  129. }
  130. public void setPodId(Long podId)
  131. {
  132. this.podId = podId;
  133. }
  134. public Long getPodId()
  135. {
  136. return podId;
  137. }
  138. public void setfValiddate(Date fValiddate)
  139. {
  140. this.fValiddate = fValiddate;
  141. }
  142. public Date getfValiddate()
  143. {
  144. return fValiddate;
  145. }
  146. public void setfBillstatus(Long fBillstatus)
  147. {
  148. this.fBillstatus = fBillstatus;
  149. }
  150. public Long getfBillstatus()
  151. {
  152. return fBillstatus;
  153. }
  154. public void setDelFlag(String delFlag)
  155. {
  156. this.delFlag = delFlag;
  157. }
  158. public String getDelFlag()
  159. {
  160. return delFlag;
  161. }
  162. public void setRemarks(String remarks)
  163. {
  164. this.remarks = remarks;
  165. }
  166. public String getRemarks()
  167. {
  168. return remarks;
  169. }
  170. public Long[] getDeleteItem0() {
  171. return deleteItem0;
  172. }
  173. public void setDeleteItem0(Long[] deleteItem0) {
  174. this.deleteItem0 = deleteItem0;
  175. }
  176. public Long[] getDeleteItem1() {
  177. return deleteItem1;
  178. }
  179. public void setDeleteItem1(Long[] deleteItem1) {
  180. this.deleteItem1 = deleteItem1;
  181. }
  182. public String getfSpecification() {
  183. return fSpecification;
  184. }
  185. public void setfSpecification(String fSpecification) {
  186. this.fSpecification = fSpecification;
  187. }
  188. public Long getfQty() {
  189. return fQty;
  190. }
  191. public void setfQty(Long fQty) {
  192. this.fQty = fQty;
  193. }
  194. public BigDecimal getShippingFee() {
  195. return shippingFee;
  196. }
  197. public void setShippingFee(BigDecimal shippingFee) {
  198. this.shippingFee = shippingFee;
  199. }
  200. public BigDecimal getExrate() {
  201. return exrate;
  202. }
  203. public void setExrate(BigDecimal exrate) {
  204. this.exrate = exrate;
  205. }
  206. public String getfType() {
  207. return fType;
  208. }
  209. public void setfType(String fType) {
  210. this.fType = fType;
  211. }
  212. public String getfDateChanged() {
  213. return fDateChanged;
  214. }
  215. public void setfDateChanged(String fDateChanged) {
  216. this.fDateChanged = fDateChanged;
  217. }
  218. public List<String> getValiddateList() {
  219. return validdateList;
  220. }
  221. public void setValiddateList(List<String> validdateList) {
  222. this.validdateList = validdateList;
  223. }
  224. public BigDecimal getRmb() {
  225. return rmb;
  226. }
  227. public void setRmb(BigDecimal rmb) {
  228. this.rmb = rmb;
  229. }
  230. @Override
  231. public String toString() {
  232. return "TSeaprice{" +
  233. "fId=" + fId +
  234. ", fBilltype=" + fBilltype +
  235. ", fCorpid=" + fCorpid +
  236. ", polId=" + polId +
  237. ", podId=" + podId +
  238. ", fValiddate=" + fValiddate +
  239. ", fDateChanged='" + fDateChanged + '\'' +
  240. ", fBillstatus=" + fBillstatus +
  241. ", delFlag='" + delFlag + '\'' +
  242. ", remarks='" + remarks + '\'' +
  243. ", fSpecification='" + fSpecification + '\'' +
  244. ", fQty=" + fQty +
  245. ", fType='" + fType + '\'' +
  246. ", shippingFee=" + shippingFee +
  247. ", exrate=" + exrate +
  248. ", deleteItem0=" + Arrays.toString(deleteItem0) +
  249. ", deleteItem1=" + Arrays.toString(deleteItem1) +
  250. ", validdateList=" + validdateList +
  251. '}';
  252. }
  253. }