TTaskMid.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * t_task_mid
  7. * @author
  8. */
  9. public class TTaskMid implements Serializable {
  10. /**
  11. * 编号
  12. */
  13. private Integer id;
  14. /**
  15. * 项目id
  16. */
  17. private Integer tid;
  18. /**
  19. * 成本金额
  20. */
  21. private BigDecimal costAmount;
  22. /**
  23. * 付款金额
  24. */
  25. private BigDecimal partyAmount;
  26. /**
  27. * 创建时间
  28. */
  29. private Date createTime;
  30. /**
  31. * 证书数量
  32. */
  33. private Integer certificatesCount;
  34. /**
  35. * 加急天数
  36. */
  37. private Integer urgentDay;
  38. /**
  39. * 有无材料
  40. */
  41. private Integer ifMaterial;
  42. /**
  43. * 驳回数
  44. */
  45. private Integer rejectCount;
  46. /**
  47. * 受理数
  48. */
  49. private Integer acceptCount;
  50. /**
  51. * 完结数
  52. */
  53. private Integer endCount;
  54. /**
  55. * 授权数
  56. */
  57. private Integer authorizeCount;
  58. /**
  59. * 申请数
  60. */
  61. private Integer applyCount;
  62. /**
  63. * 高新复审 0否 1是
  64. */
  65. private Integer highNewRetrial;
  66. /**
  67. * 派单数
  68. */
  69. private Integer dispatchCount;
  70. /**
  71. * 库存数
  72. */
  73. private Integer stockCount;
  74. /**
  75. * 完成数
  76. */
  77. private Integer completeCount;
  78. /**
  79. * 公示数
  80. */
  81. private Integer promulgateCount;
  82. /**
  83. * 派单省份
  84. */
  85. private Integer dispatchProvince;
  86. /**
  87. * 责任部门
  88. */
  89. private String dutyDep;
  90. /**
  91. * 立项数
  92. */
  93. private Integer setUpCount;
  94. /**
  95. * 抽查数
  96. */
  97. private Integer spotCheckCount;
  98. /**
  99. * 未通过数
  100. */
  101. private Integer failCount;
  102. /**
  103. * 上年度年份
  104. */
  105. private String lastYear;
  106. /**
  107. * 上年度总资本
  108. */
  109. private BigDecimal lastYearCapital;
  110. /**
  111. * 上年度总收入
  112. */
  113. private BigDecimal lastYearIncome;
  114. /**
  115. * 成本实付
  116. */
  117. private BigDecimal costActual;
  118. /**
  119. * 专利成本
  120. */
  121. private BigDecimal patentCost;
  122. /**
  123. * 专利成本实付
  124. */
  125. private BigDecimal patentCostActual;
  126. /**
  127. * 软著成本
  128. */
  129. private BigDecimal softCost;
  130. /**
  131. * 软著成本实付
  132. */
  133. private BigDecimal softCostActual;
  134. /**
  135. * 审计成本
  136. */
  137. private BigDecimal auditCost;
  138. /**
  139. * 审计成本实付
  140. */
  141. private BigDecimal auditCostActual;
  142. /**
  143. * 其他成本
  144. */
  145. private BigDecimal otherCost;
  146. /**
  147. * 其他成本实付
  148. */
  149. private BigDecimal otherCostActual;
  150. /**
  151. * 预计毛利
  152. */
  153. private BigDecimal expectProfit;
  154. /**
  155. * 实际毛利
  156. */
  157. private BigDecimal actualProfit;
  158. /**
  159. * 类型 0=项目暂停,1=项目重启
  160. */
  161. private Integer stopType;
  162. /**
  163. * 审核状态 0=发起,1=通过,2=拒绝
  164. */
  165. private Integer stopStatus;
  166. /**
  167. * 变更新增项目 0否 1是
  168. */
  169. private Integer change;
  170. private static final long serialVersionUID = 1L;
  171. public Integer getId() {
  172. return id;
  173. }
  174. public void setId(Integer id) {
  175. this.id = id;
  176. }
  177. public Integer getTid() {
  178. return tid;
  179. }
  180. public void setTid(Integer tid) {
  181. this.tid = tid;
  182. }
  183. public BigDecimal getCostAmount() {
  184. return costAmount;
  185. }
  186. public void setCostAmount(BigDecimal costAmount) {
  187. this.costAmount = costAmount;
  188. }
  189. public BigDecimal getPartyAmount() {
  190. return partyAmount;
  191. }
  192. public void setPartyAmount(BigDecimal partyAmount) {
  193. this.partyAmount = partyAmount;
  194. }
  195. public Date getCreateTime() {
  196. return createTime;
  197. }
  198. public void setCreateTime(Date createTime) {
  199. this.createTime = createTime;
  200. }
  201. public Integer getCertificatesCount() {
  202. return certificatesCount;
  203. }
  204. public void setCertificatesCount(Integer certificatesCount) {
  205. this.certificatesCount = certificatesCount;
  206. }
  207. public Integer getUrgentDay() {
  208. return urgentDay;
  209. }
  210. public void setUrgentDay(Integer urgentDay) {
  211. this.urgentDay = urgentDay;
  212. }
  213. public Integer getIfMaterial() {
  214. return ifMaterial;
  215. }
  216. public void setIfMaterial(Integer ifMaterial) {
  217. this.ifMaterial = ifMaterial;
  218. }
  219. public Integer getRejectCount() {
  220. return rejectCount;
  221. }
  222. public void setRejectCount(Integer rejectCount) {
  223. this.rejectCount = rejectCount;
  224. }
  225. public Integer getAcceptCount() {
  226. return acceptCount;
  227. }
  228. public void setAcceptCount(Integer acceptCount) {
  229. this.acceptCount = acceptCount;
  230. }
  231. public Integer getEndCount() {
  232. return endCount;
  233. }
  234. public void setEndCount(Integer endCount) {
  235. this.endCount = endCount;
  236. }
  237. public Integer getAuthorizeCount() {
  238. return authorizeCount;
  239. }
  240. public void setAuthorizeCount(Integer authorizeCount) {
  241. this.authorizeCount = authorizeCount;
  242. }
  243. public Integer getApplyCount() {
  244. return applyCount;
  245. }
  246. public void setApplyCount(Integer applyCount) {
  247. this.applyCount = applyCount;
  248. }
  249. public Integer getHighNewRetrial() {
  250. return highNewRetrial;
  251. }
  252. public void setHighNewRetrial(Integer highNewRetrial) {
  253. this.highNewRetrial = highNewRetrial;
  254. }
  255. public Integer getDispatchCount() {
  256. return dispatchCount;
  257. }
  258. public void setDispatchCount(Integer dispatchCount) {
  259. this.dispatchCount = dispatchCount;
  260. }
  261. public Integer getStockCount() {
  262. return stockCount;
  263. }
  264. public void setStockCount(Integer stockCount) {
  265. this.stockCount = stockCount;
  266. }
  267. public Integer getCompleteCount() {
  268. return completeCount;
  269. }
  270. public void setCompleteCount(Integer completeCount) {
  271. this.completeCount = completeCount;
  272. }
  273. public Integer getPromulgateCount() {
  274. return promulgateCount;
  275. }
  276. public void setPromulgateCount(Integer promulgateCount) {
  277. this.promulgateCount = promulgateCount;
  278. }
  279. public Integer getDispatchProvince() {
  280. return dispatchProvince;
  281. }
  282. public void setDispatchProvince(Integer dispatchProvince) {
  283. this.dispatchProvince = dispatchProvince;
  284. }
  285. public String getDutyDep() {
  286. return dutyDep;
  287. }
  288. public void setDutyDep(String dutyDep) {
  289. this.dutyDep = dutyDep;
  290. }
  291. public Integer getSetUpCount() {
  292. return setUpCount;
  293. }
  294. public void setSetUpCount(Integer setUpCount) {
  295. this.setUpCount = setUpCount;
  296. }
  297. public Integer getSpotCheckCount() {
  298. return spotCheckCount;
  299. }
  300. public void setSpotCheckCount(Integer spotCheckCount) {
  301. this.spotCheckCount = spotCheckCount;
  302. }
  303. public Integer getFailCount() {
  304. return failCount;
  305. }
  306. public void setFailCount(Integer failCount) {
  307. this.failCount = failCount;
  308. }
  309. public String getLastYear() {
  310. return lastYear;
  311. }
  312. public void setLastYear(String lastYear) {
  313. this.lastYear = lastYear;
  314. }
  315. public BigDecimal getLastYearCapital() {
  316. return lastYearCapital;
  317. }
  318. public void setLastYearCapital(BigDecimal lastYearCapital) {
  319. this.lastYearCapital = lastYearCapital;
  320. }
  321. public BigDecimal getLastYearIncome() {
  322. return lastYearIncome;
  323. }
  324. public void setLastYearIncome(BigDecimal lastYearIncome) {
  325. this.lastYearIncome = lastYearIncome;
  326. }
  327. public BigDecimal getCostActual() {
  328. return costActual;
  329. }
  330. public void setCostActual(BigDecimal costActual) {
  331. this.costActual = costActual;
  332. }
  333. public BigDecimal getPatentCost() {
  334. return patentCost;
  335. }
  336. public void setPatentCost(BigDecimal patentCost) {
  337. this.patentCost = patentCost;
  338. }
  339. public BigDecimal getPatentCostActual() {
  340. return patentCostActual;
  341. }
  342. public void setPatentCostActual(BigDecimal patentCostActual) {
  343. this.patentCostActual = patentCostActual;
  344. }
  345. public BigDecimal getSoftCost() {
  346. return softCost;
  347. }
  348. public void setSoftCost(BigDecimal softCost) {
  349. this.softCost = softCost;
  350. }
  351. public BigDecimal getSoftCostActual() {
  352. return softCostActual;
  353. }
  354. public void setSoftCostActual(BigDecimal softCostActual) {
  355. this.softCostActual = softCostActual;
  356. }
  357. public BigDecimal getAuditCost() {
  358. return auditCost;
  359. }
  360. public void setAuditCost(BigDecimal auditCost) {
  361. this.auditCost = auditCost;
  362. }
  363. public BigDecimal getAuditCostActual() {
  364. return auditCostActual;
  365. }
  366. public void setAuditCostActual(BigDecimal auditCostActual) {
  367. this.auditCostActual = auditCostActual;
  368. }
  369. public BigDecimal getOtherCost() {
  370. return otherCost;
  371. }
  372. public void setOtherCost(BigDecimal otherCost) {
  373. this.otherCost = otherCost;
  374. }
  375. public BigDecimal getOtherCostActual() {
  376. return otherCostActual;
  377. }
  378. public void setOtherCostActual(BigDecimal otherCostActual) {
  379. this.otherCostActual = otherCostActual;
  380. }
  381. public BigDecimal getExpectProfit() {
  382. return expectProfit;
  383. }
  384. public void setExpectProfit(BigDecimal expectProfit) {
  385. this.expectProfit = expectProfit;
  386. }
  387. public BigDecimal getActualProfit() {
  388. return actualProfit;
  389. }
  390. public void setActualProfit(BigDecimal actualProfit) {
  391. this.actualProfit = actualProfit;
  392. }
  393. public Integer getStopType() {
  394. return stopType;
  395. }
  396. public void setStopType(Integer stopType) {
  397. this.stopType = stopType;
  398. }
  399. public Integer getStopStatus() {
  400. return stopStatus;
  401. }
  402. public void setStopStatus(Integer stopStatus) {
  403. this.stopStatus = stopStatus;
  404. }
  405. public void setChange(Integer change) {
  406. this.change = change;
  407. }
  408. public Integer getChange() {
  409. return change;
  410. }
  411. public TTaskMid(Integer tid, BigDecimal costAmount) {
  412. this.tid = tid;
  413. this.costAmount = costAmount;
  414. }
  415. public TTaskMid() {
  416. }
  417. }