releaseAndExpenseCountOut.java 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. package com.goafanti.weChat.bo;
  2. import com.goafanti.common.utils.excel.Excel;
  3. import java.math.BigDecimal;
  4. public class releaseAndExpenseCountOut {
  5. private String orderNo;
  6. @Excel(name = "合同编号")
  7. private String contractNo;
  8. @Excel(name = "客户名称")
  9. private String buyerName;
  10. @Excel(name = "部门名称")
  11. private String depName;
  12. @Excel(name = "营销员名称")
  13. private String salesmanName;
  14. @Excel(name = "应公出工时")
  15. private String maxDuration;
  16. @Excel(name = "实际公出工时")
  17. private String actualDuration;
  18. @Excel(name = "超出工时")
  19. private String exceedDuration;
  20. @Excel(name = "合同金额", scale = 6)
  21. private BigDecimal totalAmount;
  22. @Excel(name = "已收款", scale = 6)
  23. private BigDecimal settlementAmount;
  24. @Excel(name = "报销总额", scale = 6)
  25. private BigDecimal expenseAmount;
  26. @Excel(name = "已付成本", scale = 6)
  27. private BigDecimal paymentAmount;
  28. @Excel(name = "报销人数")
  29. private Integer peopleCount;
  30. @Excel(name = "天数")
  31. private Integer days;
  32. @Excel(name = "报销单数")
  33. private Integer expenseCount;
  34. @Excel(name = "报销未审核")
  35. private Integer notExamine;
  36. @Excel(name = "驳回单数")
  37. private Integer rejectCount;
  38. private Integer exceedType;
  39. private Integer maxType;
  40. private Integer maxStatus;
  41. private Integer bidType;
  42. public Integer getMaxType() {
  43. return maxType;
  44. }
  45. public void setMaxType(Integer maxType) {
  46. this.maxType = maxType;
  47. }
  48. public Integer getMaxStatus() {
  49. return maxStatus;
  50. }
  51. public void setMaxStatus(Integer maxStatus) {
  52. this.maxStatus = maxStatus;
  53. }
  54. public Integer getBidType() {
  55. return bidType;
  56. }
  57. public void setBidType(Integer bidType) {
  58. this.bidType = bidType;
  59. }
  60. public String getDepName() {
  61. return depName;
  62. }
  63. public void setDepName(String depName) {
  64. this.depName = depName;
  65. }
  66. public String getSalesmanName() {
  67. return salesmanName;
  68. }
  69. public void setSalesmanName(String salesmanName) {
  70. this.salesmanName = salesmanName;
  71. }
  72. public String getOrderNo() {
  73. return orderNo;
  74. }
  75. public void setOrderNo(String orderNo) {
  76. this.orderNo = orderNo;
  77. }
  78. public String getContractNo() {
  79. return contractNo;
  80. }
  81. public void setContractNo(String contractNo) {
  82. this.contractNo = contractNo;
  83. }
  84. public String getBuyerName() {
  85. return buyerName;
  86. }
  87. public void setBuyerName(String buyerName) {
  88. this.buyerName = buyerName;
  89. }
  90. public String getMaxDuration() {
  91. if (maxDuration == null) {
  92. maxDuration = "0";
  93. }
  94. return maxDuration;
  95. }
  96. public void setMaxDuration(String maxDuration) {
  97. this.maxDuration = maxDuration;
  98. }
  99. public String getActualDuration() {
  100. if (actualDuration == null) {
  101. actualDuration = "0";
  102. }
  103. return actualDuration;
  104. }
  105. public void setActualDuration(String actualDuration) {
  106. this.actualDuration = actualDuration;
  107. }
  108. public String getExceedDuration() {
  109. if (exceedDuration == null) {
  110. exceedDuration = "0";
  111. }
  112. return exceedDuration;
  113. }
  114. public void setExceedDuration(String exceedDuration) {
  115. this.exceedDuration = exceedDuration;
  116. }
  117. public BigDecimal getTotalAmount() {
  118. return totalAmount;
  119. }
  120. public void setTotalAmount(BigDecimal totalAmount) {
  121. this.totalAmount = totalAmount;
  122. }
  123. public BigDecimal getSettlementAmount() {
  124. return settlementAmount;
  125. }
  126. public void setSettlementAmount(BigDecimal settlementAmount) {
  127. this.settlementAmount = settlementAmount;
  128. }
  129. public BigDecimal getExpenseAmount() {
  130. if (expenseAmount == null) {
  131. return BigDecimal.ZERO;
  132. }
  133. return expenseAmount;
  134. }
  135. public void setExpenseAmount(BigDecimal expenseAmount) {
  136. this.expenseAmount = expenseAmount;
  137. }
  138. public BigDecimal getPaymentAmount() {
  139. if (paymentAmount == null) {
  140. paymentAmount = BigDecimal.ZERO;
  141. }
  142. return paymentAmount;
  143. }
  144. public void setPaymentAmount(BigDecimal paymentAmount) {
  145. this.paymentAmount = paymentAmount;
  146. }
  147. public Integer getPeopleCount() {
  148. if (peopleCount == null) {
  149. peopleCount = 0;
  150. }
  151. return peopleCount;
  152. }
  153. public void setPeopleCount(Integer peopleCount) {
  154. this.peopleCount = peopleCount;
  155. }
  156. public Integer getDays() {
  157. if (days == null) {
  158. days = 0;
  159. }
  160. return days;
  161. }
  162. public void setDays(Integer days) {
  163. this.days = days;
  164. }
  165. public Integer getExpenseCount() {
  166. if (expenseCount == null) {
  167. expenseCount = 0;
  168. }
  169. return expenseCount;
  170. }
  171. public void setExpenseCount(Integer expenseCount) {
  172. this.expenseCount = expenseCount;
  173. }
  174. public Integer getNotExamine() {
  175. if (notExamine == null) {
  176. notExamine = 0;
  177. }
  178. return notExamine;
  179. }
  180. public void setNotExamine(Integer notExamine) {
  181. this.notExamine = notExamine;
  182. }
  183. public Integer getRejectCount() {
  184. if (rejectCount == null) {
  185. rejectCount = 0;
  186. }
  187. return rejectCount;
  188. }
  189. public void setRejectCount(Integer rejectCount) {
  190. this.rejectCount = rejectCount;
  191. }
  192. public Integer getExceedType() {
  193. if (exceedType == null) {
  194. exceedType = 0;
  195. }
  196. return exceedType;
  197. }
  198. public void setExceedType(Integer exceedType) {
  199. this.exceedType = exceedType;
  200. }
  201. }