View Javadoc
1   package org.kuali.ole.coa.businessobject;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.util.ArrayList;
6   import java.util.List;
7   
8   
9   /**
10   * Created by jating on 19/11/14.
11   */
12  
13  public class OleFundCode extends PersistableBusinessObjectBase {
14  
15  
16      private String fundCodeId;
17  
18      private String fundCode;
19  
20      private boolean active;
21  
22      private List<OleFundCodeAccountingLine> oleFundCodeAccountingLineList  = new ArrayList<OleFundCodeAccountingLine>();
23  
24      public String getFundCodeId() {
25          return fundCodeId;
26      }
27  
28      public void setFundCodeId(String fundCodeId) {
29          this.fundCodeId = fundCodeId;
30      }
31  
32      public String getFundCode() {
33          return fundCode;
34      }
35  
36      public void setFundCode(String fundCode) {
37          this.fundCode = fundCode;
38      }
39  
40      public List<OleFundCodeAccountingLine> getOleFundCodeAccountingLineList() {
41          return oleFundCodeAccountingLineList;
42      }
43  
44      public void setOleFundCodeAccountingLineList(List<OleFundCodeAccountingLine> oleFundCodeAccountingLineList) {
45          this.oleFundCodeAccountingLineList = oleFundCodeAccountingLineList;
46      }
47  
48      public boolean isActive() {
49          return active;
50      }
51  
52      public void setActive(boolean active) {
53          this.active = active;
54      }
55  
56  
57  }