Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.model;

import java.math.BigDecimal;

public class SdCreditRequirementModel {

        private int fofoId;
        private int securityCheck;
        private BigDecimal limit;
        private int freeDays;
        private BigDecimal interest;
        private int creditDays;

        public int getCreditDays() {
                return creditDays;
        }

        public void setCreditDays(int creditDays) {
                this.creditDays = creditDays;
        }

        public int getFofoId() {
                return fofoId;
        }

        public void setFofoId(int fofoId) {
                this.fofoId = fofoId;
        }

        public int getSecurityCheck() {
                return securityCheck;
        }

        public void setSecurityCheck(int securityCheck) {
                this.securityCheck = securityCheck;
        }

        public int getFreeDays() {
                return freeDays;
        }

        public void setFreeDays(int freeDays) {
                this.freeDays = freeDays;
        }

        public BigDecimal getLimit() {
                return limit;
        }

        public void setLimit(BigDecimal limit) {
                this.limit = limit;
        }

        public BigDecimal getInterest() {
                return interest;
        }

        public void setInterest(BigDecimal interest) {
                this.interest = interest;
        }

        @Override
        public String toString() {
                return "SdCreditRequirementModel [fofoId=" + fofoId + ", securityCheck=" + securityCheck + ", limit=" + limit
                                + ", freeDays=" + freeDays + ", interest=" + interest + ", creditDays=" + creditDays + "]";
        }

}