OutThirdPartyCompany.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. package com.goafanti.organization.bo;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. public class OutThirdPartyCompany {
  5. private Integer costReduction;
  6. private Integer officialCost;
  7. private Integer id;
  8. private Integer tid;
  9. private String companyName;
  10. private String unitPrice;
  11. private Integer quantity;
  12. private String totalAmount;
  13. private Integer material;
  14. private Integer urgent;
  15. private Integer audit;
  16. private String assets;
  17. private String income;
  18. private String remarks;
  19. private Date createTime;
  20. private Integer cid;
  21. private BigDecimal partyAmount;
  22. private Integer type;
  23. private Integer patentNameType;
  24. private BigDecimal officialAmount;
  25. public Integer getId() {
  26. return id;
  27. }
  28. public void setId(Integer id) {
  29. this.id = id;
  30. }
  31. public Integer getTid() {
  32. return tid;
  33. }
  34. public void setTid(Integer tid) {
  35. this.tid = tid;
  36. }
  37. public String getCompanyName() {
  38. return companyName;
  39. }
  40. public void setCompanyName(String companyName) {
  41. this.companyName = companyName;
  42. }
  43. public String getUnitPrice() {
  44. return unitPrice;
  45. }
  46. public void setUnitPrice(String unitPrice) {
  47. this.unitPrice = unitPrice;
  48. }
  49. public Integer getQuantity() {
  50. return quantity;
  51. }
  52. public void setQuantity(Integer quantity) {
  53. this.quantity = quantity;
  54. }
  55. public String getTotalAmount() {
  56. return totalAmount;
  57. }
  58. public void setTotalAmount(String totalAmount) {
  59. this.totalAmount = totalAmount;
  60. }
  61. public Integer getMaterial() {
  62. return material;
  63. }
  64. public void setMaterial(Integer material) {
  65. this.material = material;
  66. }
  67. public Integer getUrgent() {
  68. return urgent;
  69. }
  70. public void setUrgent(Integer urgent) {
  71. this.urgent = urgent;
  72. }
  73. public Integer getAudit() {
  74. return audit;
  75. }
  76. public void setAudit(Integer audit) {
  77. this.audit = audit;
  78. }
  79. public String getAssets() {
  80. return assets;
  81. }
  82. public void setAssets(String assets) {
  83. this.assets = assets;
  84. }
  85. public String getIncome() {
  86. return income;
  87. }
  88. public void setIncome(String income) {
  89. this.income = income;
  90. }
  91. public String getRemarks() {
  92. return remarks;
  93. }
  94. public void setRemarks(String remarks) {
  95. this.remarks = remarks;
  96. }
  97. public Date getCreateTime() {
  98. return createTime;
  99. }
  100. public void setCreateTime(Date createTime) {
  101. this.createTime = createTime;
  102. }
  103. public Integer getCid() {
  104. return cid;
  105. }
  106. public void setCid(Integer cid) {
  107. this.cid = cid;
  108. }
  109. public BigDecimal getPartyAmount() {
  110. return partyAmount;
  111. }
  112. public void setPartyAmount(BigDecimal partyAmount) {
  113. this.partyAmount = partyAmount;
  114. }
  115. public Integer getType() {
  116. return type;
  117. }
  118. public void setType(Integer type) {
  119. this.type = type;
  120. }
  121. public Integer getPatentNameType() {
  122. return patentNameType;
  123. }
  124. public void setPatentNameType(Integer patentNameType) {
  125. this.patentNameType = patentNameType;
  126. }
  127. public BigDecimal getOfficialAmount() {
  128. return officialAmount;
  129. }
  130. public void setOfficialAmount(BigDecimal officialAmount) {
  131. this.officialAmount = officialAmount;
  132. }
  133. public Integer getCostReduction() {
  134. return costReduction;
  135. }
  136. public void setCostReduction(Integer costReduction) {
  137. this.costReduction = costReduction;
  138. }
  139. public Integer getOfficialCost() {
  140. return officialCost;
  141. }
  142. public void setOfficialCost(Integer officialCost) {
  143. this.officialCost = officialCost;
  144. }
  145. }