OutThirdPartyCompany.java 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  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 String officialUnitPrice;
  8. private String reductionAmount;
  9. private Integer patentType;
  10. private Integer id;
  11. private Integer tid;
  12. private String companyName;
  13. private String unitPrice;
  14. private Integer quantity;
  15. private String totalAmount;
  16. private Integer material;
  17. private Integer urgent;
  18. private Integer audit;
  19. private String assets;
  20. private String income;
  21. private String remarks;
  22. private Date createTime;
  23. private Integer cid;
  24. private BigDecimal partyAmount;
  25. private Integer type;
  26. private Integer patentNameType;
  27. private BigDecimal officialAmount;
  28. private Integer startType;
  29. public Integer getId() {
  30. return id;
  31. }
  32. public void setId(Integer id) {
  33. this.id = id;
  34. }
  35. public Integer getTid() {
  36. return tid;
  37. }
  38. public void setTid(Integer tid) {
  39. this.tid = tid;
  40. }
  41. public String getCompanyName() {
  42. return companyName;
  43. }
  44. public void setCompanyName(String companyName) {
  45. this.companyName = companyName;
  46. }
  47. public String getUnitPrice() {
  48. return unitPrice;
  49. }
  50. public void setUnitPrice(String unitPrice) {
  51. this.unitPrice = unitPrice;
  52. }
  53. public Integer getQuantity() {
  54. return quantity;
  55. }
  56. public void setQuantity(Integer quantity) {
  57. this.quantity = quantity;
  58. }
  59. public String getTotalAmount() {
  60. return totalAmount;
  61. }
  62. public void setTotalAmount(String totalAmount) {
  63. this.totalAmount = totalAmount;
  64. }
  65. public Integer getMaterial() {
  66. return material;
  67. }
  68. public void setMaterial(Integer material) {
  69. this.material = material;
  70. }
  71. public Integer getUrgent() {
  72. return urgent;
  73. }
  74. public void setUrgent(Integer urgent) {
  75. this.urgent = urgent;
  76. }
  77. public Integer getAudit() {
  78. return audit;
  79. }
  80. public void setAudit(Integer audit) {
  81. this.audit = audit;
  82. }
  83. public String getAssets() {
  84. return assets;
  85. }
  86. public void setAssets(String assets) {
  87. this.assets = assets;
  88. }
  89. public String getIncome() {
  90. return income;
  91. }
  92. public void setIncome(String income) {
  93. this.income = income;
  94. }
  95. public String getRemarks() {
  96. return remarks;
  97. }
  98. public void setRemarks(String remarks) {
  99. this.remarks = remarks;
  100. }
  101. public Date getCreateTime() {
  102. return createTime;
  103. }
  104. public void setCreateTime(Date createTime) {
  105. this.createTime = createTime;
  106. }
  107. public Integer getCid() {
  108. return cid;
  109. }
  110. public void setCid(Integer cid) {
  111. this.cid = cid;
  112. }
  113. public BigDecimal getPartyAmount() {
  114. return partyAmount;
  115. }
  116. public void setPartyAmount(BigDecimal partyAmount) {
  117. this.partyAmount = partyAmount;
  118. }
  119. public Integer getType() {
  120. return type;
  121. }
  122. public void setType(Integer type) {
  123. this.type = type;
  124. }
  125. public Integer getPatentNameType() {
  126. return patentNameType;
  127. }
  128. public void setPatentNameType(Integer patentNameType) {
  129. this.patentNameType = patentNameType;
  130. }
  131. public BigDecimal getOfficialAmount() {
  132. return officialAmount;
  133. }
  134. public void setOfficialAmount(BigDecimal officialAmount) {
  135. this.officialAmount = officialAmount;
  136. }
  137. public Integer getCostReduction() {
  138. return costReduction;
  139. }
  140. public void setCostReduction(Integer costReduction) {
  141. this.costReduction = costReduction;
  142. }
  143. public Integer getOfficialCost() {
  144. return officialCost;
  145. }
  146. public void setOfficialCost(Integer officialCost) {
  147. this.officialCost = officialCost;
  148. }
  149. public String getOfficialUnitPrice() {
  150. return officialUnitPrice;
  151. }
  152. public void setOfficialUnitPrice(String officialUnitPrice) {
  153. this.officialUnitPrice = officialUnitPrice;
  154. }
  155. public String getReductionAmount() {
  156. return reductionAmount;
  157. }
  158. public void setReductionAmount(String reductionAmount) {
  159. this.reductionAmount = reductionAmount;
  160. }
  161. public Integer getStartType() {
  162. return startType;
  163. }
  164. public void setStartType(Integer startType) {
  165. this.startType = startType;
  166. }
  167. public Integer getPatentType() {
  168. return patentType;
  169. }
  170. public void setPatentType(Integer patentType) {
  171. this.patentType = patentType;
  172. }
  173. }