Subversion Repositories SmartDukaan

Rev

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

Rev 31020 Rev 31166
Line 8... Line 8...
8
 
8
 
9
import javax.persistence.*;
9
import javax.persistence.*;
10
import java.io.Serializable;
10
import java.io.Serializable;
11
import java.time.LocalDateTime;
11
import java.time.LocalDateTime;
12
import java.time.format.DateTimeFormatter;
12
import java.time.format.DateTimeFormatter;
-
 
13
import java.util.List;
13
 
14
 
14
/**
15
/**
15
 * This class basically contains order details
16
 * This class basically contains order details
16
 *
17
 *
17
 * @author ashikali
18
 * @author ashikali
Line 288... Line 289...
288
 
289
 
289
	public void setPartnerGrnTimestamp(LocalDateTime partnerGrnTimestamp) {
290
	public void setPartnerGrnTimestamp(LocalDateTime partnerGrnTimestamp) {
290
		this.partnerGrnTimestamp = partnerGrnTimestamp;
291
		this.partnerGrnTimestamp = partnerGrnTimestamp;
291
	}
292
	}
292
 
293
 
-
 
294
 
-
 
295
	@Transient
-
 
296
	private List<String> returnedImeis;
-
 
297
 
-
 
298
	public List<String> getReturnedImeis() {
-
 
299
		return returnedImeis;
-
 
300
	}
-
 
301
 
-
 
302
	public void setReturnedImeis(List<String> returnedImeis) {
-
 
303
		this.returnedImeis = returnedImeis;
-
 
304
	}
-
 
305
 
293
	@Column(name = "customer_id")
306
	@Column(name = "customer_id")
294
	private Integer retailerId;
307
	private Integer retailerId;
295
 
308
 
296
	@Column(name = "customer_name", length = 50)
309
	@Column(name = "customer_name", length = 50)
297
	private String retailerName;
310
	private String retailerName;