TWarehouseAgreementitems.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. package com.ruoyi.warehouseBusiness.domain;
  2. import com.baomidou.mybatisplus.annotation.TableLogic;
  3. import com.ruoyi.common.annotation.Excel;
  4. import com.ruoyi.common.core.domain.BaseEntity;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import java.math.BigDecimal;
  8. /**
  9. * 仓储费明细表对象 t_warehouse_agreementitems
  10. *
  11. * @author ruoyi
  12. * @date 2020-12-11
  13. */
  14. public class TWarehouseAgreementitems extends BaseEntity {
  15. private static final long serialVersionUID = 1L;
  16. /**
  17. * $column.columnComment
  18. */
  19. private Long fId;
  20. /**
  21. * 对应主表id
  22. */
  23. @Excel(name = "对应主表id")
  24. private Long fPid;
  25. /**
  26. * 行号
  27. */
  28. @Excel(name = "行号")
  29. private Long fLineno;
  30. /**
  31. * 费用名称,存储id 显示名称 t_fees 中的no或 name,模糊查找选择后,存储f_id,显示name
  32. */
  33. @Excel(name = "费用名称,存储id 显示名称 t_fees 中的no或 name,模糊查找选择后,存储f_id,显示name")
  34. private Long fFeeid;
  35. /**
  36. * 计价单位,t_unitfees f_id存储id 显示名称 name 对应,t_unitfees f_id,如果选择为毛重,数量(f_qty)取主表的毛重,如果选择净重,取主表的净重,如果为箱量,取主表的箱量
  37. */
  38. @Excel(name = "计价单位,t_unitfees f_id存储id 显示名称 name 对应,t_unitfees f_id,如果选择为毛重,数量", readConverterExp = "f=_qty")
  39. private Long fFeeunitid;
  40. /**
  41. * 开始天数,只有为仓储费显示
  42. */
  43. @Excel(name = "开始天数,只有为仓储费显示")
  44. private Long fFromdays;
  45. /**
  46. * 结束天数,只有为仓储费显示
  47. */
  48. @Excel(name = "结束天数,只有为仓储费显示")
  49. private Long fEndays;
  50. /**
  51. * 单价,只有为仓储费显示
  52. */
  53. @Excel(name = "单价,只有为仓储费显示")
  54. private BigDecimal fPrice;
  55. /**
  56. * 状态,默认 T ,正常T 停用F 下拉选择
  57. */
  58. @Excel(name = "状态,默认 T ,正常T 停用F 下拉选择")
  59. private String fStatus;
  60. /**
  61. * 货物类别,存储t_packages,f_id 显示名称,可以多选t_packages 中的no或 name,模糊查找选择后,存储f_id,显示name
  62. */
  63. private String tPackages;
  64. /**
  65. * 删除状态
  66. */
  67. @TableLogic
  68. private String delFlag;
  69. public String gettPackages() {
  70. return tPackages;
  71. }
  72. public void settPackages(String tPackages) {
  73. this.tPackages = tPackages;
  74. }
  75. public void setfId(Long fId) {
  76. this.fId = fId;
  77. }
  78. public Long getfId() {
  79. return fId;
  80. }
  81. public void setfPid(Long fPid) {
  82. this.fPid = fPid;
  83. }
  84. public Long getfPid() {
  85. return fPid;
  86. }
  87. public void setfLineno(Long fLineno) {
  88. this.fLineno = fLineno;
  89. }
  90. public Long getfLineno() {
  91. return fLineno;
  92. }
  93. public void setfFeeid(Long fFeeid) {
  94. this.fFeeid = fFeeid;
  95. }
  96. public Long getfFeeid() {
  97. return fFeeid;
  98. }
  99. public void setfFeeunitid(Long fFeeunitid) {
  100. this.fFeeunitid = fFeeunitid;
  101. }
  102. public Long getfFeeunitid() {
  103. return fFeeunitid;
  104. }
  105. public void setfFromdays(Long fFromdays) {
  106. this.fFromdays = fFromdays;
  107. }
  108. public Long getfFromdays() {
  109. return fFromdays;
  110. }
  111. public void setfEndays(Long fEndays) {
  112. this.fEndays = fEndays;
  113. }
  114. public Long getfEndays() {
  115. return fEndays;
  116. }
  117. public BigDecimal getfPrice() {
  118. return fPrice;
  119. }
  120. public void setfPrice(BigDecimal fPrice) {
  121. this.fPrice = fPrice;
  122. }
  123. public void setfStatus(String fStatus) {
  124. this.fStatus = fStatus;
  125. }
  126. public String getfStatus() {
  127. return fStatus;
  128. }
  129. public void setDelFlag(String delFlag) {
  130. this.delFlag = delFlag;
  131. }
  132. public String getDelFlag() {
  133. return delFlag;
  134. }
  135. @Override
  136. public String toString() {
  137. return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
  138. .append("fId", getfId())
  139. .append("fPid", getfPid())
  140. .append("fLineno", getfLineno())
  141. .append("fFeeid", getfFeeid())
  142. .append("fFeeunitid", getfFeeunitid())
  143. .append("fFromdays", getfFromdays())
  144. .append("fEndays", getfEndays())
  145. .append("fPrice", getfPrice())
  146. .append("fStatus", getfStatus())
  147. .append("delFlag", getDelFlag())
  148. .append("createBy", getCreateBy())
  149. .append("createTime", getCreateTime())
  150. .append("updateBy", getUpdateBy())
  151. .append("updateTime", getUpdateTime())
  152. .append("remark", getRemark())
  153. .toString();
  154. }
  155. }