Subversion Repositories SmartDukaan

Rev

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

Rev 12017 Rev 12021
Line 46... Line 46...
46
    
46
    
47
    private long itemId;
47
    private long itemId;
48
    private String insuranceResult;
48
    private String insuranceResult;
49
    
49
    
50
    private boolean toInsure;
50
    private boolean toInsure;
51
    private boolean isPrivateDealUser = false;
51
    private boolean privateDealUser = false;
52
    private boolean isAutoApplicationOff = true;
52
    private boolean autoApplicationUser = true;
53
    
53
    
54
    private long id =-1; //CartId
54
    private long id =-1; //CartId
55
    private String cartPojoJson;
55
    private String cartPojoJson;
56
    private long quantity;
56
    private long quantity;
57
    private int insuranceType;
57
    private int insuranceType;
Line 425... Line 425...
425
 
425
 
426
    public void setInsuranceType(int insuranceType) {
426
    public void setInsuranceType(int insuranceType) {
427
        this.insuranceType = insuranceType;
427
        this.insuranceType = insuranceType;
428
    }
428
    }
429
 
429
 
430
	public void setPrivateDealUser(boolean isPrivateDealUser) {
430
	public void setPrivateDealUser(boolean privateDealUser) {
431
		this.isPrivateDealUser = isPrivateDealUser;
431
		this.privateDealUser = privateDealUser;
432
	}
432
	}
433
 
433
 
434
	public boolean isPrivateDealUser() {
434
	public boolean isPrivateDealUser() {
435
		return isPrivateDealUser;
435
		return privateDealUser;
436
	}
436
	}
437
 
437
 
438
	public void setAutoApplicationOff(boolean isAutoApplicationOff) {
438
	public void setAutoApplicationUser(boolean autoApplicationUser) {
439
		this.isAutoApplicationOff = isAutoApplicationOff;
439
		this.autoApplicationUser = autoApplicationUser;
440
	}
440
	}
441
 
441
 
442
	public boolean isAutoApplicationOff() {
442
	public boolean isAutoApplicationUser() {
443
		return isAutoApplicationOff;
443
		return autoApplicationUser;
444
	}
444
	}
445
}
445
}