Done ticket GEPAFINBE-6143
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package net.gepafin.tendermanagement.model.request;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ApplicationContractRequest {
|
||||
|
||||
private String subject;
|
||||
private String text;
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
package net.gepafin.tendermanagement.model.response;
|
||||
|
||||
import lombok.Data;
|
||||
import net.gepafin.tendermanagement.enums.ApplicationContractStatusEnum;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class ApplicationContractResponse {
|
||||
|
||||
private Long id;
|
||||
|
||||
private String subject;
|
||||
|
||||
private String text;
|
||||
|
||||
private ApplicationContractStatusEnum status;
|
||||
|
||||
private List<DocumentResponseBean> instructorDocuments;
|
||||
|
||||
private Long instructorId;
|
||||
|
||||
private List<DocumentResponseBean> beneficiaryDocuments;
|
||||
|
||||
private Long beneficiaryUserId;
|
||||
|
||||
private LocalDateTime completionDate;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user