TWarehouseAgreementitem.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package com.ruoyi.warehouseBusiness.dto;
  2. import com.ruoyi.common.annotation.Excel;
  3. import com.ruoyi.common.core.domain.BaseEntity;
  4. /**
  5. * 仓储费明细表对象 t_warehouse_agreementitems
  6. *
  7. * @author ruoyi
  8. * @date 2020-12-11
  9. */
  10. public class TWarehouseAgreementitem extends BaseEntity {
  11. private static final long serialVersionUID = 1L;
  12. /**
  13. * $column.columnComment
  14. */
  15. private Long fId;
  16. /**
  17. * 货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效
  18. */
  19. @Excel(name = "车队")
  20. private Long fFleet;
  21. /**
  22. * 货转客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name,自有在货权转移是该字段有效
  23. */
  24. @Excel(name = "劳务")
  25. private Long fLabour ;
  26. /**
  27. * 客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name
  28. */
  29. @Excel(name = "客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name")
  30. private Long fCorpid;
  31. /**
  32. * 费用名称,存储id 显示名称 t_fees 中的no或 name,模糊查找选择后,存储f_id,显示name
  33. */
  34. @Excel(name = "费用名称,存储id 显示名称 t_fees 中的no或 name,模糊查找选择后,存储f_id,显示name")
  35. private Long fFeeid;
  36. /**
  37. * 作业费类型
  38. */
  39. @Excel(name = "作业费类型")
  40. private Long fTaskType;
  41. /**
  42. * 作业费类型
  43. */
  44. @Excel(name = "作业费类型")
  45. private String fBilltype;
  46. public Long getfId() {
  47. return fId;
  48. }
  49. public void setfId(Long fId) {
  50. this.fId = fId;
  51. }
  52. public Long getfFleet() {
  53. return fFleet;
  54. }
  55. public void setfFleet(Long fFleet) {
  56. this.fFleet = fFleet;
  57. }
  58. public Long getfLabour() {
  59. return fLabour;
  60. }
  61. public void setfLabour(Long fLabour) {
  62. this.fLabour = fLabour;
  63. }
  64. public Long getfCorpid() {
  65. return fCorpid;
  66. }
  67. public void setfCorpid(Long fCorpid) {
  68. this.fCorpid = fCorpid;
  69. }
  70. public Long getfFeeid() {
  71. return fFeeid;
  72. }
  73. public void setfFeeid(Long fFeeid) {
  74. this.fFeeid = fFeeid;
  75. }
  76. public Long getfTaskType() {
  77. return fTaskType;
  78. }
  79. public void setfTaskType(Long fTaskType) {
  80. this.fTaskType = fTaskType;
  81. }
  82. public String getfBilltype() {
  83. return fBilltype;
  84. }
  85. public void setfBilltype(String fBilltype) {
  86. this.fBilltype = fBilltype;
  87. }
  88. @Override
  89. public String toString() {
  90. return "TWarehouseAgreementitem{" +
  91. "fId=" + fId +
  92. ", fFleet=" + fFleet +
  93. ", fLabour=" + fLabour +
  94. ", fCorpid=" + fCorpid +
  95. ", fFeeid=" + fFeeid +
  96. ", fTaskType=" + fTaskType +
  97. '}';
  98. }
  99. }