Subversion Repositories SmartDukaan

Rev

Rev 9808 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9808 Rev 11864
Line 15... Line 15...
15
    private boolean isTheftInsuranceAvailable;
15
    private boolean isTheftInsuranceAvailable;
16
    private long insurer; // required
16
    private long insurer; // required
17
    private double insuranceAmount; // required
17
    private double insuranceAmount; // required
18
    private boolean isDataProtectionAvailable;
18
    private boolean isDataProtectionAvailable;
19
    private long dataProtectionInsurer; // required
19
    private long dataProtectionInsurer; // required
-
 
20
    private String dealText;
20
    private double dataProtectionAmount; // required
21
    private double dataProtectionAmount; // required
21
    private String imageUrl; // required
22
    private String imageUrl; // required
22
    private LogisticsInfoPojo logisticsInfo;
23
    private LogisticsInfoPojo logisticsInfo;
23
    
24
    
24
    public long getItemId() {
25
    public long getItemId() {
Line 103... Line 104...
103
        this.logisticsInfo = logisticsInfo;
104
        this.logisticsInfo = logisticsInfo;
104
    }
105
    }
105
    public LogisticsInfoPojo getLogisticsInfo() {
106
    public LogisticsInfoPojo getLogisticsInfo() {
106
        return logisticsInfo;
107
        return logisticsInfo;
107
    }
108
    }
-
 
109
	public void setDealText(String dealText) {
-
 
110
		this.dealText = dealText;
-
 
111
	}
-
 
112
	public String getDealText() {
-
 
113
		return dealText;
-
 
114
	}
108
}
115
}