Subversion Repositories SmartDukaan

Rev

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

Rev 36739 Rev 36758
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;
-
 
4
 
3
import javax.persistence.*;
5
import javax.persistence.*;
4
import java.time.LocalDate;
6
import java.time.LocalDate;
5
import java.time.LocalDateTime;
7
import java.time.LocalDateTime;
6
 
8
 
7
/**
9
/**
Line 48... Line 50...
48
 
50
 
49
	@Column(name = "reason")
51
	@Column(name = "reason")
50
	private String reason;
52
	private String reason;
51
 
53
 
52
	@Column(name = "status")
54
	@Column(name = "status")
53
	private String status;
55
	private ProfitMandiConstants.MARK_TYPE status;
54
 
56
 
55
	@Column(name = "rescheduled_to_date")
57
	@Column(name = "rescheduled_to_date")
56
	private LocalDate rescheduledToDate;
58
	private LocalDate rescheduledToDate;
57
 
59
 
58
	@Column(name = "action_by")
60
	@Column(name = "action_by")
Line 110... Line 112...
110
 
112
 
111
	public void setReason(String reason) {
113
	public void setReason(String reason) {
112
		this.reason = reason;
114
		this.reason = reason;
113
	}
115
	}
114
 
116
 
115
	public String getStatus() {
117
	public ProfitMandiConstants.MARK_TYPE getStatus() {
116
		return status;
118
		return status;
117
	}
119
	}
118
 
120
 
119
	public void setStatus(String status) {
121
	public void setStatus(ProfitMandiConstants.MARK_TYPE status) {
120
		this.status = status;
122
		this.status = status;
121
	}
123
	}
122
 
124
 
123
	public LocalDate getRescheduledToDate() {
125
	public LocalDate getRescheduledToDate() {
124
		return rescheduledToDate;
126
		return rescheduledToDate;