TbAssetOrder.java 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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_order
  10. *
  11. * @author 原动力
  12. * @date 2023-05-15
  13. */
  14. public class TbAssetOrder 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 applicationDepartment;
  35. /** 原因说明 */
  36. @Excel(name = "原因说明")
  37. private String reason;
  38. /** 制单人 */
  39. @Excel(name = "制单人")
  40. private String preparedBy;
  41. /** 制单部门 */
  42. @Excel(name = "制单部门")
  43. private String preparedDepartment;
  44. /** 所属公司 */
  45. @Excel(name = "所属公司")
  46. private String corporation;
  47. /** 记录状态 */
  48. @Excel(name = "记录状态")
  49. private Long recordStatus;
  50. /** 单据类型 */
  51. @Excel(name = "单据类型")
  52. private Long orderType;
  53. public void setId(Long id)
  54. {
  55. this.id = id;
  56. }
  57. public Long getId()
  58. {
  59. return id;
  60. }
  61. public void setOrderNumber(String orderNumber)
  62. {
  63. this.orderNumber = orderNumber;
  64. }
  65. public String getOrderNumber()
  66. {
  67. return orderNumber;
  68. }
  69. public void setAssetTotalOriginalValue(String assetTotalOriginalValue)
  70. {
  71. this.assetTotalOriginalValue = assetTotalOriginalValue;
  72. }
  73. public String getAssetTotalOriginalValue()
  74. {
  75. return assetTotalOriginalValue;
  76. }
  77. public void setAssetTotalNetValue(String assetTotalNetValue)
  78. {
  79. this.assetTotalNetValue = assetTotalNetValue;
  80. }
  81. public String getAssetTotalNetValue()
  82. {
  83. return assetTotalNetValue;
  84. }
  85. public void setApplicationDate(Date applicationDate)
  86. {
  87. this.applicationDate = applicationDate;
  88. }
  89. public Date getApplicationDate()
  90. {
  91. return applicationDate;
  92. }
  93. public void setApplicationDepartment(String applicationDepartment)
  94. {
  95. this.applicationDepartment = applicationDepartment;
  96. }
  97. public String getApplicationDepartment()
  98. {
  99. return applicationDepartment;
  100. }
  101. public void setReason(String reason)
  102. {
  103. this.reason = reason;
  104. }
  105. public String getReason()
  106. {
  107. return reason;
  108. }
  109. public void setPreparedBy(String preparedBy)
  110. {
  111. this.preparedBy = preparedBy;
  112. }
  113. public String getPreparedBy()
  114. {
  115. return preparedBy;
  116. }
  117. public void setPreparedDepartment(String preparedDepartment)
  118. {
  119. this.preparedDepartment = preparedDepartment;
  120. }
  121. public String getPreparedDepartment()
  122. {
  123. return preparedDepartment;
  124. }
  125. public void setCorporation(String corporation)
  126. {
  127. this.corporation = corporation;
  128. }
  129. public String getCorporation()
  130. {
  131. return corporation;
  132. }
  133. public void setRecordStatus(Long recordStatus)
  134. {
  135. this.recordStatus = recordStatus;
  136. }
  137. public Long getRecordStatus()
  138. {
  139. return recordStatus;
  140. }
  141. public void setOrderType(Long orderType)
  142. {
  143. this.orderType = orderType;
  144. }
  145. public Long getOrderType()
  146. {
  147. return orderType;
  148. }
  149. @Override
  150. public String toString() {
  151. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  152. .append("id", getId())
  153. .append("orderNumber", getOrderNumber())
  154. .append("assetTotalOriginalValue", getAssetTotalOriginalValue())
  155. .append("assetTotalNetValue", getAssetTotalNetValue())
  156. .append("applicationDate", getApplicationDate())
  157. .append("applicationDepartment", getApplicationDepartment())
  158. .append("reason", getReason())
  159. .append("preparedBy", getPreparedBy())
  160. .append("preparedDepartment", getPreparedDepartment())
  161. .append("corporation", getCorporation())
  162. .append("recordStatus", getRecordStatus())
  163. .append("orderType", getOrderType())
  164. .toString();
  165. }
  166. }