31 lines
549 B
Java
31 lines
549 B
Java
package net.gepafin.tendermanagement.model.response;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.time.LocalDateTime;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class ApplicationAmendmentRequestViewResponse {
|
|
|
|
private Long id;
|
|
|
|
private Long applicationId;
|
|
|
|
private Long protocolNumber;
|
|
|
|
private String callName;
|
|
|
|
private String companyName;
|
|
|
|
private LocalDateTime startDate;
|
|
|
|
private LocalDateTime expirationDate;
|
|
|
|
private String assigendUserName;
|
|
|
|
private String status;
|
|
|
|
private List<EmailSendResponse> emailSendResponse;
|
|
}
|