| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- package com.goafanti.common.model;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * amb_system
- * @author
- */
- public class AmbSystem implements Serializable {
- /**
- * 部门id
- */
- private Long id;
- /**
- * 父部门id
- */
- private Long parentId;
- /**
- * 祖级列表
- */
- private String ancestors;
- /**
- * 部门名称
- */
- private String name;
- /**
- * 显示顺序
- */
- private Integer orderNum;
- /**
- * 负责人
- */
- private String leader;
- /**
- * 部门状态(0正常 1停用)
- */
- private String status;
- /**
- * 创建者
- */
- private String createBy;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 更新者
- */
- private String updateBy;
- /**
- * 更新时间
- */
- private Date updateTime;
- /**
- * 层级 0=集团,1=管综经开总,2=大区总,3=区总,4=事业部总,5=战区总,6=巴总
- */
- private Integer lvl;
- /**
- * 财务id
- */
- private String financeId;
- /**
- * 祖级名称
- */
- private String ancestorsNames;
- /**
- * 会计id
- */
- private String accountant;
- /**
- * 说明
- */
- private String remarks;
- /**
- * 总金额
- */
- private BigDecimal totalAmount;
- /**
- * 成员数
- */
- private Integer membersCount;
- /**
- * 我收到的投资款
- */
- private BigDecimal received;
- /**
- * 我对外的投资款
- */
- private BigDecimal foreign;
- /**
- * 我剩余的投资款
- */
- private BigDecimal surplus;
- private static final long serialVersionUID = 1L;
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public Long getParentId() {
- return parentId;
- }
- public void setParentId(Long parentId) {
- this.parentId = parentId;
- }
- public String getAncestors() {
- return ancestors;
- }
- public void setAncestors(String ancestors) {
- this.ancestors = ancestors;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public Integer getOrderNum() {
- return orderNum;
- }
- public void setOrderNum(Integer orderNum) {
- this.orderNum = orderNum;
- }
- public String getLeader() {
- return leader;
- }
- public void setLeader(String leader) {
- this.leader = leader;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getCreateBy() {
- return createBy;
- }
- public void setCreateBy(String createBy) {
- this.createBy = createBy;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getUpdateBy() {
- return updateBy;
- }
- public void setUpdateBy(String updateBy) {
- this.updateBy = updateBy;
- }
- public Date getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- public Integer getLvl() {
- return lvl;
- }
- public void setLvl(Integer lvl) {
- this.lvl = lvl;
- }
- public String getFinanceId() {
- return financeId;
- }
- public void setFinanceId(String financeId) {
- this.financeId = financeId;
- }
- public String getAncestorsNames() {
- return ancestorsNames;
- }
- public void setAncestorsNames(String ancestorsNames) {
- this.ancestorsNames = ancestorsNames;
- }
- public String getAccountant() {
- return accountant;
- }
- public void setAccountant(String accountant) {
- this.accountant = accountant;
- }
- public String getRemarks() {
- return remarks;
- }
- public void setRemarks(String remarks) {
- this.remarks = remarks;
- }
- public BigDecimal getTotalAmount() {
- return totalAmount;
- }
- public void setTotalAmount(BigDecimal totalAmount) {
- this.totalAmount = totalAmount;
- }
- public Integer getMembersCount() {
- return membersCount;
- }
- public void setMembersCount(Integer membersCount) {
- this.membersCount = membersCount;
- }
- public BigDecimal getReceived() {
- return received;
- }
- public void setReceived(BigDecimal received) {
- this.received = received;
- }
- public BigDecimal getForeign() {
- return foreign;
- }
- public void setForeign(BigDecimal foreign) {
- this.foreign = foreign;
- }
- public BigDecimal getSurplus() {
- return surplus;
- }
- public void setSurplus(BigDecimal surplus) {
- this.surplus = surplus;
- }
- public AmbSystem(String leader) {
- this.leader = leader;
- }
- public AmbSystem() {
- }
- }
|