Subversion Repositories SmartDukaan

Rev

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

Rev 26958 Rev 26959
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.dtr;
1
package com.spice.profitmandi.dao.entity.dtr;
2
 
2
 
-
 
3
import java.time.LocalDateTime;
-
 
4
 
3
import javax.persistence.Column;
5
import javax.persistence.Column;
4
import javax.persistence.Entity;
6
import javax.persistence.Entity;
5
import javax.persistence.GeneratedValue;
7
import javax.persistence.GeneratedValue;
6
import javax.persistence.GenerationType;
8
import javax.persistence.GenerationType;
7
import javax.persistence.Id;
9
import javax.persistence.Id;
Line 23... Line 25...
23
	private int bannerListingId;
25
	private int bannerListingId;
24
 
26
 
25
	@Column(name = "banner_url")
27
	@Column(name = "banner_url")
26
	private String bannerUrl;
28
	private String bannerUrl;
27
 
29
 
-
 
30
	@Column(name = "media_type")
-
 
31
	private String mediaType;
-
 
32
 
-
 
33
	@Column(name = "created_timestamp")
-
 
34
	private LocalDateTime createdTimestamp;
-
 
35
 
-
 
36
	public LocalDateTime getCreatedTimestamp() {
-
 
37
		return createdTimestamp;
-
 
38
	}
-
 
39
 
-
 
40
	public void setCreatedTimestamp(LocalDateTime createdTimestamp) {
-
 
41
		this.createdTimestamp = createdTimestamp;
-
 
42
	}
-
 
43
 
-
 
44
	public String getMediaType() {
-
 
45
		return mediaType;
-
 
46
	}
-
 
47
 
-
 
48
	public void setMediaType(String mediaType) {
-
 
49
		this.mediaType = mediaType;
-
 
50
	}
-
 
51
 
28
	@JsonProperty(defaultValue = "0")
52
	@JsonProperty(defaultValue = "0")
29
	@Column(name = "rank")
53
	@Column(name = "rank")
30
	private int rank;
54
	private int rank;
31
 
55
 
32
	public int getId() {
56
	public int getId() {