TSeaprice.java 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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. public void setfId(Long fId)
  65. {
  66. this.fId = fId;
  67. }
  68. public Long getfId()
  69. {
  70. return fId;
  71. }
  72. public void setfBilltype(Long fBilltype)
  73. {
  74. this.fBilltype = fBilltype;
  75. }
  76. public Long getfBilltype()
  77. {
  78. return fBilltype;
  79. }
  80. public void setfCorpid(Long fCorpid)
  81. {
  82. this.fCorpid = fCorpid;
  83. }
  84. public Long getfCorpid()
  85. {
  86. return fCorpid;
  87. }
  88. public void setPolId(Long polId)
  89. {
  90. this.polId = polId;
  91. }
  92. public Long getPolId()
  93. {
  94. return polId;
  95. }
  96. public void setPodId(Long podId)
  97. {
  98. this.podId = podId;
  99. }
  100. public Long getPodId()
  101. {
  102. return podId;
  103. }
  104. public void setfValiddate(Date fValiddate)
  105. {
  106. this.fValiddate = fValiddate;
  107. }
  108. public Date getfValiddate()
  109. {
  110. return fValiddate;
  111. }
  112. public void setfBillstatus(Long fBillstatus)
  113. {
  114. this.fBillstatus = fBillstatus;
  115. }
  116. public Long getfBillstatus()
  117. {
  118. return fBillstatus;
  119. }
  120. public void setDelFlag(String delFlag)
  121. {
  122. this.delFlag = delFlag;
  123. }
  124. public String getDelFlag()
  125. {
  126. return delFlag;
  127. }
  128. public void setRemarks(String remarks)
  129. {
  130. this.remarks = remarks;
  131. }
  132. public String getRemarks()
  133. {
  134. return remarks;
  135. }
  136. public Long[] getDeleteItem0() {
  137. return deleteItem0;
  138. }
  139. public void setDeleteItem0(Long[] deleteItem0) {
  140. this.deleteItem0 = deleteItem0;
  141. }
  142. public Long[] getDeleteItem1() {
  143. return deleteItem1;
  144. }
  145. public void setDeleteItem1(Long[] deleteItem1) {
  146. this.deleteItem1 = deleteItem1;
  147. }
  148. public String getfSpecification() {
  149. return fSpecification;
  150. }
  151. public void setfSpecification(String fSpecification) {
  152. this.fSpecification = fSpecification;
  153. }
  154. public Long getfQty() {
  155. return fQty;
  156. }
  157. public void setfQty(Long fQty) {
  158. this.fQty = fQty;
  159. }
  160. public BigDecimal getShippingFee() {
  161. return shippingFee;
  162. }
  163. public void setShippingFee(BigDecimal shippingFee) {
  164. this.shippingFee = shippingFee;
  165. }
  166. public BigDecimal getExrate() {
  167. return exrate;
  168. }
  169. public void setExrate(BigDecimal exrate) {
  170. this.exrate = exrate;
  171. }
  172. public String getfType() {
  173. return fType;
  174. }
  175. public void setfType(String fType) {
  176. this.fType = fType;
  177. }
  178. public String getfDateChanged() {
  179. return fDateChanged;
  180. }
  181. public void setfDateChanged(String fDateChanged) {
  182. this.fDateChanged = fDateChanged;
  183. }
  184. public List<String> getValiddateList() {
  185. return validdateList;
  186. }
  187. public void setValiddateList(List<String> validdateList) {
  188. this.validdateList = validdateList;
  189. }
  190. public BigDecimal getRmb() {
  191. return rmb;
  192. }
  193. public void setRmb(BigDecimal rmb) {
  194. this.rmb = rmb;
  195. }
  196. @Override
  197. public String toString() {
  198. return "TSeaprice{" +
  199. "fId=" + fId +
  200. ", fBilltype=" + fBilltype +
  201. ", fCorpid=" + fCorpid +
  202. ", polId=" + polId +
  203. ", podId=" + podId +
  204. ", fValiddate=" + fValiddate +
  205. ", fDateChanged='" + fDateChanged + '\'' +
  206. ", fBillstatus=" + fBillstatus +
  207. ", delFlag='" + delFlag + '\'' +
  208. ", remarks='" + remarks + '\'' +
  209. ", fSpecification='" + fSpecification + '\'' +
  210. ", fQty=" + fQty +
  211. ", fType='" + fType + '\'' +
  212. ", shippingFee=" + shippingFee +
  213. ", exrate=" + exrate +
  214. ", deleteItem0=" + Arrays.toString(deleteItem0) +
  215. ", deleteItem1=" + Arrays.toString(deleteItem1) +
  216. ", validdateList=" + validdateList +
  217. '}';
  218. }
  219. }