Subversion Repositories SmartDukaan

Rev

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

Rev 22735 Rev 22963
Line 103... Line 103...
103
	@Column(name="update_timestamp")
103
	@Column(name="update_timestamp")
104
	@UpdateTimestamp
104
	@UpdateTimestamp
105
	private LocalDateTime updateTimestamp = LocalDateTime.now();
105
	private LocalDateTime updateTimestamp = LocalDateTime.now();
106
		
106
		
107
	@Column(name = "document_id")
107
	@Column(name = "document_id")
108
	private int documentId;
108
	private Integer documentId;
109
		
109
		
110
	@Column(name = "current_address_id")
110
	@Column(name = "current_address_id")
111
	private int currentAddressId;
111
	private int currentAddressId;
112
	
112
	
113
	public int getId() {
113
	public int getId() {
Line 178... Line 178...
178
	}
178
	}
179
    public RetailerType getType() {
179
    public RetailerType getType() {
180
		return type;
180
		return type;
181
	}
181
	}
182
    
182
    
183
    public int getDocumentId() {
183
    public Integer getDocumentId() {
184
		return documentId;
184
		return documentId;
185
	}
185
	}
186
    public void setDocumentId(int documentId) {
186
    public void setDocumentId(Integer documentId) {
187
		this.documentId = documentId;
187
		this.documentId = documentId;
188
	}
188
	}
189
    
189
    
190
    public void setCurrentAddressId(int currentAddressId) {
190
    public void setCurrentAddressId(int currentAddressId) {
191
		this.currentAddressId = currentAddressId;
191
		this.currentAddressId = currentAddressId;