Subversion Repositories SmartDukaan

Rev

Rev 23847 | Rev 24349 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23847 Rev 23884
Line 43... Line 43...
43
	
43
	
44
	@Column(name="counter_size")
44
	@Column(name="counter_size")
45
	@Enumerated(EnumType.STRING)
45
	@Enumerated(EnumType.STRING)
46
	private CounterSize counterSize = CounterSize.TEN_LAC;
46
	private CounterSize counterSize = CounterSize.TEN_LAC;
47
	
47
	
-
 
48
	@Column(name="minimum_investment")
-
 
49
	private float minimumInvestment;
-
 
50
	
48
	//Number of days to realise money.
51
	//Number of days to realise money.
49
	/*@Column(name="credit_cycle")
52
	/*@Column(name="credit_cycle")
50
	private int creditCycle;*/
53
	private int creditCycle;*/
51
	
54
	
-
 
55
	public float getMinimumInvestment() {
-
 
56
		return minimumInvestment;
-
 
57
	}
-
 
58
	public void setMinimumInvestment(float minimumInvestment) {
-
 
59
		this.minimumInvestment = minimumInvestment;
-
 
60
	}
-
 
61
 
52
	@Transient
62
	@Transient
53
	private Address userAddress;
63
	private Address userAddress;
54
	
64
	
55
	
65
	
56
	/*public int getCreditCycle() {
66
	/*public int getCreditCycle() {
Line 124... Line 134...
124
		return true;
134
		return true;
125
	}
135
	}
126
	
136
	
127
	@Override
137
	@Override
128
	public String toString() {
138
	public String toString() {
129
		return "FofoStore [id=" + id + ", code=" + code + ", counterSize=" + counterSize
139
		return "FofoStore [id=" + id + ", code=" + code + ", latitude=" + latitude + ", longitude=" + longitude
-
 
140
				+ ", counterSize=" + counterSize + ", minimumInvestment=" + minimumInvestment + ", userAddress="
130
				+ ", userAddress=" + userAddress + "]";
141
				+ userAddress + "]";
131
	}
142
	}
132
	
143
	
133
	
144
	
134
	
145
	
135
        
146