Subversion Repositories SmartDukaan

Rev

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

Rev 26824 Rev 28495
Line 87... Line 87...
87
		result = prime * result + (int) (temp ^ (temp >>> 32));
87
		result = prime * result + (int) (temp ^ (temp >>> 32));
88
		result = prime * result + stateId;
88
		result = prime * result + stateId;
89
		return result;
89
		return result;
90
	}
90
	}
91
 
91
 
-
 
92
	public StateGstRate(int itemId, int stateId, double igstRate, double cgstRate, double sgstRate) {
-
 
93
		super();
-
 
94
		this.itemId = itemId;
-
 
95
		this.stateId = stateId;
-
 
96
		this.igstRate = igstRate;
-
 
97
		this.cgstRate = cgstRate;
-
 
98
		this.sgstRate = sgstRate;
-
 
99
	}
-
 
100
 
92
	@Override
101
	@Override
93
	public boolean equals(Object obj) {
102
	public boolean equals(Object obj) {
94
		if (this == obj)
103
		if (this == obj)
95
			return true;
104
			return true;
96
		if (obj == null)
105
		if (obj == null)
Line 109... Line 118...
109
		if (stateId != other.stateId)
118
		if (stateId != other.stateId)
110
			return false;
119
			return false;
111
		return true;
120
		return true;
112
	}
121
	}
113
 
122
 
-
 
123
	public StateGstRate() {
-
 
124
		super();
-
 
125
		// TODO Auto-generated constructor stub
-
 
126
	}
-
 
127
 
-
 
128
	
114
	
129
	
115
}
130
}