AmbSystem.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * amb_system
  7. * @author
  8. */
  9. public class AmbSystem implements Serializable {
  10. /**
  11. * 部门id
  12. */
  13. private Long id;
  14. /**
  15. * 父部门id
  16. */
  17. private Long parentId;
  18. /**
  19. * 祖级列表
  20. */
  21. private String ancestors;
  22. /**
  23. * 部门名称
  24. */
  25. private String name;
  26. /**
  27. * 显示顺序
  28. */
  29. private Integer orderNum;
  30. /**
  31. * 负责人
  32. */
  33. private String leader;
  34. /**
  35. * 部门状态(0正常 1停用)
  36. */
  37. private String status;
  38. /**
  39. * 创建者
  40. */
  41. private String createBy;
  42. /**
  43. * 创建时间
  44. */
  45. private Date createTime;
  46. /**
  47. * 更新者
  48. */
  49. private String updateBy;
  50. /**
  51. * 更新时间
  52. */
  53. private Date updateTime;
  54. /**
  55. * 层级 0=集团,1=管综经开总,2=大区总,3=区总,4=事业部总,5=战区总,6=巴总
  56. */
  57. private Integer lvl;
  58. /**
  59. * 财务id
  60. */
  61. private String financeId;
  62. /**
  63. * 祖级名称
  64. */
  65. private String ancestorsNames;
  66. /**
  67. * 会计id
  68. */
  69. private String accountant;
  70. /**
  71. * 说明
  72. */
  73. private String remarks;
  74. /**
  75. * 总金额
  76. */
  77. private BigDecimal totalAmount;
  78. /**
  79. * 成员数
  80. */
  81. private Integer membersCount;
  82. /**
  83. * 我收到的投资款
  84. */
  85. private BigDecimal received;
  86. /**
  87. * 我对外的投资款
  88. */
  89. private BigDecimal foreign;
  90. /**
  91. * 我剩余的投资款
  92. */
  93. private BigDecimal surplus;
  94. private static final long serialVersionUID = 1L;
  95. public Long getId() {
  96. return id;
  97. }
  98. public void setId(Long id) {
  99. this.id = id;
  100. }
  101. public Long getParentId() {
  102. return parentId;
  103. }
  104. public void setParentId(Long parentId) {
  105. this.parentId = parentId;
  106. }
  107. public String getAncestors() {
  108. return ancestors;
  109. }
  110. public void setAncestors(String ancestors) {
  111. this.ancestors = ancestors;
  112. }
  113. public String getName() {
  114. return name;
  115. }
  116. public void setName(String name) {
  117. this.name = name;
  118. }
  119. public Integer getOrderNum() {
  120. return orderNum;
  121. }
  122. public void setOrderNum(Integer orderNum) {
  123. this.orderNum = orderNum;
  124. }
  125. public String getLeader() {
  126. return leader;
  127. }
  128. public void setLeader(String leader) {
  129. this.leader = leader;
  130. }
  131. public String getStatus() {
  132. return status;
  133. }
  134. public void setStatus(String status) {
  135. this.status = status;
  136. }
  137. public String getCreateBy() {
  138. return createBy;
  139. }
  140. public void setCreateBy(String createBy) {
  141. this.createBy = createBy;
  142. }
  143. public Date getCreateTime() {
  144. return createTime;
  145. }
  146. public void setCreateTime(Date createTime) {
  147. this.createTime = createTime;
  148. }
  149. public String getUpdateBy() {
  150. return updateBy;
  151. }
  152. public void setUpdateBy(String updateBy) {
  153. this.updateBy = updateBy;
  154. }
  155. public Date getUpdateTime() {
  156. return updateTime;
  157. }
  158. public void setUpdateTime(Date updateTime) {
  159. this.updateTime = updateTime;
  160. }
  161. public Integer getLvl() {
  162. return lvl;
  163. }
  164. public void setLvl(Integer lvl) {
  165. this.lvl = lvl;
  166. }
  167. public String getFinanceId() {
  168. return financeId;
  169. }
  170. public void setFinanceId(String financeId) {
  171. this.financeId = financeId;
  172. }
  173. public String getAncestorsNames() {
  174. return ancestorsNames;
  175. }
  176. public void setAncestorsNames(String ancestorsNames) {
  177. this.ancestorsNames = ancestorsNames;
  178. }
  179. public String getAccountant() {
  180. return accountant;
  181. }
  182. public void setAccountant(String accountant) {
  183. this.accountant = accountant;
  184. }
  185. public String getRemarks() {
  186. return remarks;
  187. }
  188. public void setRemarks(String remarks) {
  189. this.remarks = remarks;
  190. }
  191. public BigDecimal getTotalAmount() {
  192. return totalAmount;
  193. }
  194. public void setTotalAmount(BigDecimal totalAmount) {
  195. this.totalAmount = totalAmount;
  196. }
  197. public Integer getMembersCount() {
  198. return membersCount;
  199. }
  200. public void setMembersCount(Integer membersCount) {
  201. this.membersCount = membersCount;
  202. }
  203. public BigDecimal getReceived() {
  204. return received;
  205. }
  206. public void setReceived(BigDecimal received) {
  207. this.received = received;
  208. }
  209. public BigDecimal getForeign() {
  210. return foreign;
  211. }
  212. public void setForeign(BigDecimal foreign) {
  213. this.foreign = foreign;
  214. }
  215. public BigDecimal getSurplus() {
  216. return surplus;
  217. }
  218. public void setSurplus(BigDecimal surplus) {
  219. this.surplus = surplus;
  220. }
  221. public AmbSystem(String leader) {
  222. this.leader = leader;
  223. }
  224. public AmbSystem() {
  225. }
  226. }