TbAssetLend.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. package com.ruoyi.change.domain;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import org.apache.commons.lang3.builder.ToStringBuilder;
  5. import org.apache.commons.lang3.builder.ToStringStyle;
  6. import com.ruoyi.common.annotation.Excel;
  7. import com.ruoyi.common.core.domain.BaseEntity;
  8. /**
  9. * 资产借出对象 tb_asset_lend
  10. *
  11. * @author 原动力
  12. * @date 2023-05-15
  13. */
  14. public class TbAssetLend extends BaseEntity
  15. {
  16. private static final long serialVersionUID = 1L;
  17. /** 编号 */
  18. private Long id;
  19. /** 借出单号 */
  20. @Excel(name = "借出单号")
  21. private String orderNumber;
  22. /** 资产总原值(元) */
  23. @Excel(name = "资产总原值", readConverterExp = "元=")
  24. private String assetTotalOriginalValue;
  25. /** 资产总净值(元) */
  26. @Excel(name = "资产总净值", readConverterExp = "元=")
  27. private String assetTotalNetValue;
  28. /** 申请日期 */
  29. @JsonFormat(pattern = "yyyy-MM-dd")
  30. @Excel(name = "申请日期", width = 30, dateFormat = "yyyy-MM-dd")
  31. private Date applicationDate;
  32. /** 借出部门 */
  33. @Excel(name = "借出部门")
  34. private String lendDepartment;
  35. /** 经手人 */
  36. @Excel(name = "经手人")
  37. private String bySponsor;
  38. /** 往来单位 */
  39. @Excel(name = "往来单位")
  40. private String passingUnit;
  41. /** 借用说明 */
  42. @Excel(name = "借用说明")
  43. private String reason;
  44. /** 制单人 */
  45. @Excel(name = "制单人")
  46. private String preparedBy;
  47. /** 制单部门 */
  48. @Excel(name = "制单部门")
  49. private String preparedDepartment;
  50. /** 所属公司 */
  51. @Excel(name = "所属公司")
  52. private String corporation;
  53. /** 记录状态 */
  54. @Excel(name = "记录状态")
  55. private Long recordStatus;
  56. public void setId(Long id)
  57. {
  58. this.id = id;
  59. }
  60. public Long getId()
  61. {
  62. return id;
  63. }
  64. public void setOrderNumber(String orderNumber)
  65. {
  66. this.orderNumber = orderNumber;
  67. }
  68. public String getOrderNumber()
  69. {
  70. return orderNumber;
  71. }
  72. public void setAssetTotalOriginalValue(String assetTotalOriginalValue)
  73. {
  74. this.assetTotalOriginalValue = assetTotalOriginalValue;
  75. }
  76. public String getAssetTotalOriginalValue()
  77. {
  78. return assetTotalOriginalValue;
  79. }
  80. public void setAssetTotalNetValue(String assetTotalNetValue)
  81. {
  82. this.assetTotalNetValue = assetTotalNetValue;
  83. }
  84. public String getAssetTotalNetValue()
  85. {
  86. return assetTotalNetValue;
  87. }
  88. public void setApplicationDate(Date applicationDate)
  89. {
  90. this.applicationDate = applicationDate;
  91. }
  92. public Date getApplicationDate()
  93. {
  94. return applicationDate;
  95. }
  96. public void setLendDepartment(String lendDepartment)
  97. {
  98. this.lendDepartment = lendDepartment;
  99. }
  100. public String getLendDepartment()
  101. {
  102. return lendDepartment;
  103. }
  104. public void setBySponsor(String bySponsor)
  105. {
  106. this.bySponsor = bySponsor;
  107. }
  108. public String getBySponsor()
  109. {
  110. return bySponsor;
  111. }
  112. public void setPassingUnit(String passingUnit)
  113. {
  114. this.passingUnit = passingUnit;
  115. }
  116. public String getPassingUnit()
  117. {
  118. return passingUnit;
  119. }
  120. public void setReason(String reason)
  121. {
  122. this.reason = reason;
  123. }
  124. public String getReason()
  125. {
  126. return reason;
  127. }
  128. public void setPreparedBy(String preparedBy)
  129. {
  130. this.preparedBy = preparedBy;
  131. }
  132. public String getPreparedBy()
  133. {
  134. return preparedBy;
  135. }
  136. public void setPreparedDepartment(String preparedDepartment)
  137. {
  138. this.preparedDepartment = preparedDepartment;
  139. }
  140. public String getPreparedDepartment()
  141. {
  142. return preparedDepartment;
  143. }
  144. public void setCorporation(String corporation)
  145. {
  146. this.corporation = corporation;
  147. }
  148. public String getCorporation()
  149. {
  150. return corporation;
  151. }
  152. public void setRecordStatus(Long recordStatus)
  153. {
  154. this.recordStatus = recordStatus;
  155. }
  156. public Long getRecordStatus()
  157. {
  158. return recordStatus;
  159. }
  160. @Override
  161. public String toString() {
  162. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  163. .append("id", getId())
  164. .append("orderNumber", getOrderNumber())
  165. .append("assetTotalOriginalValue", getAssetTotalOriginalValue())
  166. .append("assetTotalNetValue", getAssetTotalNetValue())
  167. .append("applicationDate", getApplicationDate())
  168. .append("lendDepartment", getLendDepartment())
  169. .append("bySponsor", getBySponsor())
  170. .append("passingUnit", getPassingUnit())
  171. .append("reason", getReason())
  172. .append("preparedBy", getPreparedBy())
  173. .append("preparedDepartment", getPreparedDepartment())
  174. .append("corporation", getCorporation())
  175. .append("recordStatus", getRecordStatus())
  176. .toString();
  177. }
  178. }