Communication amend test.

This commit is contained in:
piyuskag
2024-10-26 12:11:30 +05:30
parent d541492e81
commit 452a661389
13 changed files with 489 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
package net.gepafin.tendermanagement.model.request;
import lombok.Data;
@Data
public class CommunicationRequestBean {
private String title;
private String comment;
private Long amendmentId;
}

View File

@@ -0,0 +1,11 @@
package net.gepafin.tendermanagement.model.response;
import lombok.Data;
import java.time.Instant;
@Data
public class CommunicationResponseBean {
private Instant communicationAddedDate;
private String comment;
}