OrgFinance.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. package com.goafanti.common.model;
  2. import com.fasterxml.jackson.annotation.JsonIgnore;
  3. public class OrgFinance {
  4. private String id;
  5. private String uid;
  6. /**
  7. * 主营业务收入 (万元)
  8. */
  9. private Integer mainBusinessIncome;
  10. /**
  11. * 管理费用(万元)
  12. */
  13. private Integer managementCost;
  14. /**
  15. * 营业利润(万元)
  16. */
  17. private Integer operatingProfit;
  18. /**
  19. * 支付的各项税费(万元)
  20. */
  21. private Integer variousTax;
  22. /**
  23. * 流动资产
  24. */
  25. private Integer currentAsset;
  26. /**
  27. * 固定资产净额 (万元)
  28. */
  29. private Integer netFixedAsset;
  30. /**
  31. * 资产总额(万元)
  32. */
  33. private Integer totalAsset;
  34. /**
  35. * 所有者权益合计(万元)
  36. */
  37. private Integer netAsset;
  38. /**
  39. * 利润总额(万元)
  40. */
  41. private Integer grossProfit;
  42. /**
  43. * 净利润(万元)
  44. */
  45. private Integer netProfit;
  46. /**
  47. * 销售收入(万元)
  48. */
  49. private Integer salesRevenue;
  50. /**
  51. * 年份
  52. */
  53. private Integer year;
  54. /**
  55. * 财务报表URL
  56. */
  57. private String financeUrl;
  58. /**
  59. * 删除标记
  60. */
  61. private Integer deletedSign;
  62. public String getId() {
  63. return id;
  64. }
  65. public void setId(String id) {
  66. this.id = id;
  67. }
  68. public String getUid() {
  69. return uid;
  70. }
  71. public void setUid(String uid) {
  72. this.uid = uid;
  73. }
  74. public Integer getMainBusinessIncome() {
  75. return mainBusinessIncome;
  76. }
  77. public void setMainBusinessIncome(Integer mainBusinessIncome) {
  78. this.mainBusinessIncome = mainBusinessIncome;
  79. }
  80. public Integer getManagementCost() {
  81. return managementCost;
  82. }
  83. public void setManagementCost(Integer managementCost) {
  84. this.managementCost = managementCost;
  85. }
  86. public Integer getOperatingProfit() {
  87. return operatingProfit;
  88. }
  89. public void setOperatingProfit(Integer operatingProfit) {
  90. this.operatingProfit = operatingProfit;
  91. }
  92. public Integer getVariousTax() {
  93. return variousTax;
  94. }
  95. public void setVariousTax(Integer variousTax) {
  96. this.variousTax = variousTax;
  97. }
  98. public Integer getCurrentAsset() {
  99. return currentAsset;
  100. }
  101. public void setCurrentAsset(Integer currentAsset) {
  102. this.currentAsset = currentAsset;
  103. }
  104. public Integer getNetFixedAsset() {
  105. return netFixedAsset;
  106. }
  107. public void setNetFixedAsset(Integer netFixedAsset) {
  108. this.netFixedAsset = netFixedAsset;
  109. }
  110. public Integer getTotalAsset() {
  111. return totalAsset;
  112. }
  113. public void setTotalAsset(Integer totalAsset) {
  114. this.totalAsset = totalAsset;
  115. }
  116. public Integer getNetAsset() {
  117. return netAsset;
  118. }
  119. public void setNetAsset(Integer netAsset) {
  120. this.netAsset = netAsset;
  121. }
  122. public Integer getGrossProfit() {
  123. return grossProfit;
  124. }
  125. public void setGrossProfit(Integer grossProfit) {
  126. this.grossProfit = grossProfit;
  127. }
  128. public Integer getNetProfit() {
  129. return netProfit;
  130. }
  131. public void setNetProfit(Integer netProfit) {
  132. this.netProfit = netProfit;
  133. }
  134. public Integer getSalesRevenue() {
  135. return salesRevenue;
  136. }
  137. public void setSalesRevenue(Integer salesRevenue) {
  138. this.salesRevenue = salesRevenue;
  139. }
  140. public String getFinanceUrl() {
  141. return financeUrl;
  142. }
  143. public void setFinanceUrl(String financeUrl) {
  144. this.financeUrl = financeUrl;
  145. }
  146. @JsonIgnore
  147. public Integer getDeletedSign() {
  148. return deletedSign;
  149. }
  150. public void setDeletedSign(Integer deletedSign) {
  151. this.deletedSign = deletedSign;
  152. }
  153. public Integer getYear() {
  154. return year;
  155. }
  156. public void setYear(Integer year) {
  157. this.year = year;
  158. }
  159. }