Subversion Repositories SmartDukaan

Rev

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

Rev 36758 Rev 36762
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.user;
1
package com.spice.profitmandi.dao.entity.user;
2
 
2
 
3
import com.spice.profitmandi.common.model.ProfitMandiConstants;
-
 
-
 
3
 
4
 
4
 
5
import javax.persistence.*;
5
import javax.persistence.*;
6
import java.time.LocalDate;
6
import java.time.LocalDate;
7
import java.time.LocalDateTime;
7
import java.time.LocalDateTime;
8
 
8
 
Line 50... Line 50...
50
 
50
 
51
	@Column(name = "reason")
51
	@Column(name = "reason")
52
	private String reason;
52
	private String reason;
53
 
53
 
54
	@Column(name = "status")
54
	@Column(name = "status")
55
	private ProfitMandiConstants.MARK_TYPE status;
55
	private String status;
56
 
56
 
57
	@Column(name = "rescheduled_to_date")
57
	@Column(name = "rescheduled_to_date")
58
	private LocalDate rescheduledToDate;
58
	private LocalDate rescheduledToDate;
59
 
59
 
60
	@Column(name = "action_by")
60
	@Column(name = "action_by")
Line 112... Line 112...
112
 
112
 
113
	public void setReason(String reason) {
113
	public void setReason(String reason) {
114
		this.reason = reason;
114
		this.reason = reason;
115
	}
115
	}
116
 
116
 
117
	public ProfitMandiConstants.MARK_TYPE getStatus() {
117
	public String getStatus() {
118
		return status;
118
		return status;
119
	}
119
	}
120
 
120
 
121
	public void setStatus(ProfitMandiConstants.MARK_TYPE status) {
121
	public void setStatus(String status) {
122
		this.status = status;
122
		this.status = status;
123
	}
123
	}
124
 
124
 
125
	public LocalDate getRescheduledToDate() {
125
	public LocalDate getRescheduledToDate() {
126
		return rescheduledToDate;
126
		return rescheduledToDate;