Coverage Report - edu.sampleu.travel.bo.TravelAccountUseRate
 
Classes in this File Line Coverage Branch Coverage Complexity
TravelAccountUseRate
0%
0/11
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-2010 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package edu.sampleu.travel.bo;
 17  
 
 18  
 import org.kuali.rice.core.util.type.KualiPercent;
 19  
 import org.kuali.rice.kns.bo.InactivatableFromToImpl;
 20  
 
 21  
 import javax.persistence.Column;
 22  
 import javax.persistence.Entity;
 23  
 import javax.persistence.Id;
 24  
 import javax.persistence.Table;
 25  
 
 26  
 @Entity
 27  
 @Table(name = "TRV_ACCT_USE_RT")
 28  
 public class TravelAccountUseRate extends InactivatableFromToImpl {
 29  
 
 30  
         @Id
 31  
         @Column(name = "id")
 32  
         private String id;
 33  
 
 34  
         @Column(name = "acct_num")
 35  
         private String number;
 36  
 
 37  
         @Column(name = "rate")
 38  
         private KualiPercent rate;
 39  
 
 40  
         public TravelAccountUseRate() {
 41  0
                 super();
 42  0
         }
 43  
 
 44  
         public String getId() {
 45  0
                 return this.id;
 46  
         }
 47  
 
 48  
         public void setId(String id) {
 49  0
                 this.id = id;
 50  0
         }
 51  
 
 52  
         public String getNumber() {
 53  0
                 return this.number;
 54  
         }
 55  
 
 56  
         public void setNumber(String number) {
 57  0
                 this.number = number;
 58  0
         }
 59  
 
 60  
         public KualiPercent getRate() {
 61  0
                 return this.rate;
 62  
         }
 63  
 
 64  
         public void setRate(KualiPercent rate) {
 65  0
                 this.rate = rate;
 66  0
         }
 67  
 }