JkxlDetailFee.java 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. package com.jeeplus.modules.sg.overheadline.entity;
  2. import com.jeeplus.common.utils.excel.annotation.ExcelField;
  3. public class JkxlDetailFee {
  4. private String id; //项目ID
  5. private String wbsCode; //WBS识别码
  6. private Double originalTotalCost; //分布分项合计金额
  7. private Double zjgcFee; //直接工程费
  8. private Double originalRgCost; //分布分项前人工费
  9. private Double originalCbrCost; //分布分项前承包人采购费
  10. private Double originalFbrCost; //分布分项前发包人采购费
  11. private Double originalJxCost; //分部分项前机械费
  12. private Double rgCost; //分部分项调差后人工费
  13. private Double cbrCost; //分布分项调差后承包人采购费
  14. private Double fbrCost; //分布分项调差后发包人采购费
  15. private Double jxCost; //分布分项调差后发包人机械费
  16. private Double measuresFee1; //措施费一(1)
  17. private Double measuresFee2; //措施费一(2)
  18. private Double measuresFee3; //措施费二
  19. private Double otherCost; //其他费用
  20. private Double fees; //规费
  21. private Double tex; //税金
  22. private Double originalRate; //总金额占比
  23. private Double rgFtFee; //共性人工分摊费用
  24. private Double cbrFtFee; //共性承包人采购分摊费用
  25. private Double fbrFtFee; //共性发包人采购分摊费用
  26. private Double jxFtFee; //共性机械分摊费用
  27. private Double gxFee; //共性分摊费
  28. private Double totalFee; //合计金额
  29. private String wbsId; //标准 WBS 要素
  30. private String projectId; //内部项目号
  31. private String describe; //描述
  32. private String parentNode; //父节点
  33. private String mountMatter; //挂接物料
  34. private String mountServer; //挂接服务
  35. private String subjectAllocate; //科目分配
  36. private String feeType; //1:主体部分 2:其他部分
  37. private double sbFee; //设备费
  38. private double jzFee; //建筑费
  39. private double sbgzFee; //设备购置费
  40. private double azFee; //安装费
  41. private double zcFee; //装材费
  42. private double qtFee; //其他费用
  43. private double jsFee; //结算价
  44. private double cFee; //差额
  45. private String hierarchy; //层级
  46. private Integer index; //序号
  47. @ExcelField(title="设备费", align=1, sort=6)
  48. public double getSbFee() {
  49. return sbFee;
  50. }
  51. public void setSbFee(double sbFee) {
  52. this.sbFee = sbFee;
  53. }
  54. @ExcelField(title="建筑费", align=1, sort=5)
  55. public double getJzFee() {
  56. return jzFee;
  57. }
  58. public void setJzFee(double jzFee) {
  59. this.jzFee = jzFee;
  60. }
  61. public Double getGxFee() {
  62. return gxFee;
  63. }
  64. public void setGxFee(Double gxFee) {
  65. this.gxFee = gxFee;
  66. }
  67. public String getSubjectAllocate() {
  68. return subjectAllocate;
  69. }
  70. public void setSubjectAllocate(String subjectAllocate) {
  71. this.subjectAllocate = subjectAllocate;
  72. }
  73. public String getFeeType() {
  74. return feeType;
  75. }
  76. public void setFeeType(String feeType) {
  77. this.feeType = feeType;
  78. }
  79. public Double getMeasuresFee3() {
  80. return measuresFee3;
  81. }
  82. public void setMeasuresFee3(Double measuresFee3) {
  83. this.measuresFee3 = measuresFee3;
  84. }
  85. public String getMountMatter() {
  86. return mountMatter;
  87. }
  88. public void setMountMatter(String mountMatter) {
  89. this.mountMatter = mountMatter;
  90. }
  91. public String getMountServer() {
  92. return mountServer;
  93. }
  94. public void setMountServer(String mountServer) {
  95. this.mountServer = mountServer;
  96. }
  97. public String getWbsId() {
  98. return wbsId;
  99. }
  100. public void setWbsId(String wbsId) {
  101. this.wbsId = wbsId;
  102. }
  103. public String getProjectId() {
  104. return projectId;
  105. }
  106. public void setProjectId(String projectId) {
  107. this.projectId = projectId;
  108. }
  109. @ExcelField(title="元素描述", align=1, sort=4)
  110. public String getDescribe() {
  111. return describe;
  112. }
  113. public void setDescribe(String describe) {
  114. this.describe = describe;
  115. }
  116. public String getParentNode() {
  117. return parentNode;
  118. }
  119. public void setParentNode(String parentNode) {
  120. this.parentNode = parentNode;
  121. }
  122. @ExcelField(title="WBS识别码", align=2, sort=2)
  123. public String getWbsCode() {
  124. return wbsCode;
  125. }
  126. public void setWbsCode(String wbsCode) {
  127. this.wbsCode = wbsCode;
  128. }
  129. @ExcelField(title="合计", align=2, sort=11)
  130. public Double getTotalFee() {
  131. return totalFee;
  132. }
  133. public void setTotalFee(Double totalFee) {
  134. this.totalFee = totalFee;
  135. }
  136. public String getId() {
  137. return id;
  138. }
  139. public void setId(String id) {
  140. this.id = id;
  141. }
  142. public Double getOriginalTotalCost() {
  143. return originalTotalCost;
  144. }
  145. public void setOriginalTotalCost(Double originalTotalCost) {
  146. this.originalTotalCost = originalTotalCost;
  147. }
  148. public Double getZjgcFee() {
  149. return zjgcFee;
  150. }
  151. public void setZjgcFee(Double zjgcFee) {
  152. this.zjgcFee = zjgcFee;
  153. }
  154. public Double getRgFtFee() {
  155. return rgFtFee;
  156. }
  157. public void setRgFtFee(Double rgFtFee) {
  158. this.rgFtFee = rgFtFee;
  159. }
  160. public Double getCbrFtFee() {
  161. return cbrFtFee;
  162. }
  163. public void setCbrFtFee(Double cbrFtFee) {
  164. this.cbrFtFee = cbrFtFee;
  165. }
  166. public Double getFbrFtFee() {
  167. return fbrFtFee;
  168. }
  169. public void setFbrFtFee(Double fbrFtFee) {
  170. this.fbrFtFee = fbrFtFee;
  171. }
  172. public Double getJxFtFee() {
  173. return jxFtFee;
  174. }
  175. public void setJxFtFee(Double jxFtFee) {
  176. this.jxFtFee = jxFtFee;
  177. }
  178. public Double getOriginalRate() {
  179. return originalRate;
  180. }
  181. public void setOriginalRate(Double originalRate) {
  182. this.originalRate = originalRate;
  183. }
  184. public Double getOriginalRgCost() {
  185. return originalRgCost;
  186. }
  187. public void setOriginalRgCost(Double originalRgCost) {
  188. this.originalRgCost = originalRgCost;
  189. }
  190. public Double getOriginalCbrCost() {
  191. return originalCbrCost;
  192. }
  193. public void setOriginalCbrCost(Double originalCbrCost) {
  194. this.originalCbrCost = originalCbrCost;
  195. }
  196. public Double getOriginalFbrCost() {
  197. return originalFbrCost;
  198. }
  199. public void setOriginalFbrCost(Double originalFbrCost) {
  200. this.originalFbrCost = originalFbrCost;
  201. }
  202. public Double getOriginalJxCost() {
  203. return originalJxCost;
  204. }
  205. public void setOriginalJxCost(Double originalJxCost) {
  206. this.originalJxCost = originalJxCost;
  207. }
  208. public Double getRgCost() {
  209. return rgCost;
  210. }
  211. public void setRgCost(Double rgCost) {
  212. this.rgCost = rgCost;
  213. }
  214. public Double getCbrCost() {
  215. return cbrCost;
  216. }
  217. public void setCbrCost(Double cbrCost) {
  218. this.cbrCost = cbrCost;
  219. }
  220. public Double getFbrCost() {
  221. return fbrCost;
  222. }
  223. public void setFbrCost(Double fbrCost) {
  224. this.fbrCost = fbrCost;
  225. }
  226. public Double getJxCost() {
  227. return jxCost;
  228. }
  229. public void setJxCost(Double jxCost) {
  230. this.jxCost = jxCost;
  231. }
  232. public Double getMeasuresFee1() {
  233. return measuresFee1;
  234. }
  235. public void setMeasuresFee1(Double measuresFee1) {
  236. this.measuresFee1 = measuresFee1;
  237. }
  238. public Double getMeasuresFee2() {
  239. return measuresFee2;
  240. }
  241. public void setMeasuresFee2(Double measuresFee2) {
  242. this.measuresFee2 = measuresFee2;
  243. }
  244. public Double getOtherCost() {
  245. return otherCost;
  246. }
  247. public void setOtherCost(Double otherCost) {
  248. this.otherCost = otherCost;
  249. }
  250. public Double getFees() {
  251. return fees;
  252. }
  253. public void setFees(Double fees) {
  254. this.fees = fees;
  255. }
  256. public Double getTex() {
  257. return tex;
  258. }
  259. public void setTex(Double tex) {
  260. this.tex = tex;
  261. }
  262. @ExcelField(title="设备购置费", align=2, sort=7)
  263. public double getSbgzFee() {
  264. return sbgzFee;
  265. }
  266. public void setSbgzFee(double sbgzFee) {
  267. this.sbgzFee = sbgzFee;
  268. }
  269. @ExcelField(title="安装费", align=2, sort=8)
  270. public double getAzFee() {
  271. return azFee;
  272. }
  273. public void setAzFee(double azFee) {
  274. this.azFee = azFee;
  275. }
  276. @ExcelField(title="装材费", align=2, sort=9)
  277. public double getZcFee() {
  278. return zcFee;
  279. }
  280. public void setZcFee(double zcFee) {
  281. this.zcFee = zcFee;
  282. }
  283. @ExcelField(title="其他费用", align=2, sort=10)
  284. public double getQtFee() {
  285. return qtFee;
  286. }
  287. public void setQtFee(double qtFee) {
  288. this.qtFee = qtFee;
  289. }
  290. @ExcelField(title="结算价", align=2, sort=12)
  291. public double getJsFee() {
  292. return jsFee;
  293. }
  294. public void setJsFee(double jsFee) {
  295. this.jsFee = jsFee;
  296. }
  297. @ExcelField(title="差额", align=2, sort=13)
  298. public double getcFee() {
  299. return cFee;
  300. }
  301. public void setcFee(double cFee) {
  302. this.cFee = cFee;
  303. }
  304. @ExcelField(title="层级", align=2, sort=3)
  305. public String getHierarchy() {
  306. return hierarchy;
  307. }
  308. public void setHierarchy(String hierarchy) {
  309. this.hierarchy = hierarchy;
  310. }
  311. @ExcelField(title="序号", align=2, sort=1)
  312. public Integer getIndex() {
  313. return index;
  314. }
  315. public void setIndex(Integer index) {
  316. this.index = index;
  317. }
  318. }