Subversion Repositories SmartDukaan

Rev

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

Rev 32421 Rev 32432
Line 1... Line 1...
1
package com.spice.profitmandi.dao.model;
1
package com.spice.profitmandi.dao.model;
2
 
2
 
3
import java.io.Serializable;
-
 
4
import java.util.Objects;
-
 
5
 
-
 
6
import com.spice.profitmandi.dao.entity.fofo.PartnerDailyInvestment;
3
import com.spice.profitmandi.dao.entity.fofo.PartnerDailyInvestment;
7
import com.spice.profitmandi.dao.entity.fofo.PartnerType;
4
import com.spice.profitmandi.dao.entity.fofo.PartnerType;
8
 
5
 
-
 
6
import java.io.Serializable;
-
 
7
import java.util.Objects;
-
 
8
 
9
public class PartnerDetailModel implements Serializable {
9
public class PartnerDetailModel implements Serializable {
10
 
10
 
11
	/**
11
	/**
12
	 * 
12
	 * 
13
	 */
13
	 */
Line 231... Line 231...
231
				&& walletAmount == other.walletAmount;
231
				&& walletAmount == other.walletAmount;
232
	}
232
	}
233
 
233
 
234
	@Override
234
	@Override
235
	public String toString() {
235
	public String toString() {
-
 
236
		return "PartnerDetailModel{" +
-
 
237
				"lmtd=" + lmtd +
-
 
238
				", mtd=" + mtd +
-
 
239
				", lms=" + lms +
236
		return "PartnerDetailModel [lmtd=" + lmtd + ", mtd=" + mtd + ", lms=" + lms + ", secondarylms=" + secondarylms
240
				", secondarylms=" + secondarylms +
-
 
241
				", secondarymtd=" + secondarymtd +
237
				+ ", secondarymtd=" + secondarymtd + ", secondarylmtd=" + secondarylmtd + ", ticket=" + ticket
242
				", secondarylmtd=" + secondarylmtd +
-
 
243
				", ticket=" + ticket +
-
 
244
				", hygiene=" + hygiene +
238
				+ ", hygiene=" + hygiene + ", totalHygiene=" + totalHygiene + ", count=" + count + ", todayTertiary="
245
				", totalHygiene=" + totalHygiene +
-
 
246
				", count=" + count +
-
 
247
				", todayTertiary=" + todayTertiary +
239
				+ todayTertiary + ", lastThreeDaytertiary=" + lastThreeDaytertiary + ", walletAmount=" + walletAmount
248
				", lastThreeDaytertiary=" + lastThreeDaytertiary +
-
 
249
				", walletAmount=" + walletAmount +
-
 
250
				", authUser='" + authUser + '\'' +
-
 
251
				", rbms='" + rbms + '\'' +
-
 
252
				", partnerType=" + partnerType +
240
				+ ", authUser=" + authUser + ", partnerType=" + partnerType + ", investment_ok=" + investment_ok
253
				", investment_ok=" + investment_ok +
-
 
254
				", fofoId=" + fofoId +
241
				+ ", fofoId=" + fofoId + ", investment=" + investment + ", leads=" + leads + "]";
255
				", investment=" + investment +
-
 
256
				", leads=" + leads +
-
 
257
				'}';
242
	}
258
	}
243
 
-
 
244
}
259
}