Created call api's in 2 steps and for update call
This commit is contained in:
@@ -4,7 +4,6 @@ import java.util.List;
|
||||
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.Data;
|
||||
import net.gepafin.tendermanagement.enums.CallTypeEnum;
|
||||
|
||||
@Data
|
||||
public class CreateCallRequestStep2 {
|
||||
@@ -24,7 +23,4 @@ public class CreateCallRequestStep2 {
|
||||
|
||||
private List<DocumentReq> images;
|
||||
|
||||
@NotNull
|
||||
private CallTypeEnum status;
|
||||
|
||||
}
|
||||
|
||||
@@ -5,5 +5,5 @@ import lombok.Data;
|
||||
@Data
|
||||
public class EvaluationCriteriaReq extends LookUpDataReq{
|
||||
|
||||
private Integer score;
|
||||
private Long score;
|
||||
}
|
||||
|
||||
@@ -5,6 +5,7 @@ import lombok.Data;
|
||||
@Data
|
||||
public class FaqReq {
|
||||
|
||||
private Long id;
|
||||
private Boolean isVisible;
|
||||
private String questionShort;
|
||||
private String question;
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
package net.gepafin.tendermanagement.model.request;
|
||||
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class LookUpDataReq {
|
||||
|
||||
@NotNull
|
||||
private Long id;
|
||||
|
||||
private Long lookUpDataId;
|
||||
|
||||
private String value;
|
||||
|
||||
@@ -7,5 +7,5 @@ import java.time.LocalDateTime;
|
||||
@Data
|
||||
public class EvaluationCriteriaResponseBean extends LookUpDataResponse{
|
||||
|
||||
private Integer score;
|
||||
private Long score;
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ public class FaqResponseBean {
|
||||
|
||||
private Long id;
|
||||
|
||||
private Long userId;
|
||||
private Long userId;
|
||||
|
||||
private Boolean isVisible;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user