55 lines
1.5 KiB
Java
55 lines
1.5 KiB
Java
package net.gepafin.tendermanagement.model.response;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
public class CommunicationResponseBean {
|
|
private LocalDateTime commentedDate;
|
|
|
|
private String comment;
|
|
|
|
private Long id;
|
|
|
|
private String title;
|
|
|
|
private LocalDateTime createdDate;
|
|
|
|
private LocalDateTime updatedDate;
|
|
|
|
private Long senderUserId;
|
|
|
|
private Long receiverUserId;
|
|
|
|
private Long amendmentId;
|
|
|
|
public CommunicationResponseBean(LocalDateTime commentedDate, String comment, String title, LocalDateTime createdDate, LocalDateTime updatedDate, Long amendmentId, Long id) {
|
|
|
|
this.commentedDate = commentedDate;
|
|
this.comment = comment;
|
|
this.title = title;
|
|
this.createdDate = createdDate;
|
|
this.updatedDate = updatedDate;
|
|
this.amendmentId = amendmentId;
|
|
this.id = id;
|
|
}
|
|
|
|
public CommunicationResponseBean(LocalDateTime commentedDate, String comment, String title, LocalDateTime createdDate, LocalDateTime updatedDate, Long amendmentId,Long senderUserId,Long receiverUserId, Long id) {
|
|
|
|
this.commentedDate = commentedDate;
|
|
this.comment = comment;
|
|
this.title = title;
|
|
this.createdDate = createdDate;
|
|
this.updatedDate = updatedDate;
|
|
this.amendmentId = amendmentId;
|
|
this.senderUserId = senderUserId;
|
|
this.receiverUserId = receiverUserId;
|
|
this.id = id;
|
|
}
|
|
|
|
public CommunicationResponseBean() {
|
|
|
|
}
|
|
}
|