updated code
This commit is contained in:
@@ -93,9 +93,9 @@ public class CallEntity extends BaseEntity {
|
|||||||
private String evaluationVersion;
|
private String evaluationVersion;
|
||||||
|
|
||||||
@Column(name = "NUMBER_OF_CHECK")
|
@Column(name = "NUMBER_OF_CHECK")
|
||||||
private BigDecimal numberOfCheck;
|
private Long numberOfCheck;
|
||||||
|
|
||||||
@Column(name = "PRODUCT_ID")
|
@Column(name = "PRODUCT_ID")
|
||||||
private BigDecimal productId;
|
private Long productId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -24,9 +24,9 @@ public class CreateCallRequestStep1 {
|
|||||||
|
|
||||||
private BigDecimal amountMax;
|
private BigDecimal amountMax;
|
||||||
|
|
||||||
private BigDecimal numberOfCheck;
|
private Long numberOfCheck;
|
||||||
|
|
||||||
private BigDecimal productId;
|
private Long productId;
|
||||||
|
|
||||||
private List<LookUpDataReq> aimedTo;
|
private List<LookUpDataReq> aimedTo;
|
||||||
|
|
||||||
|
|||||||
@@ -41,9 +41,9 @@ public class UpdateCallRequestStep1 {
|
|||||||
|
|
||||||
private List<FaqReq> faq;
|
private List<FaqReq> faq;
|
||||||
|
|
||||||
private BigDecimal numberOfCheck;
|
private Long numberOfCheck;
|
||||||
|
|
||||||
private BigDecimal productId;
|
private Long productId;
|
||||||
|
|
||||||
private EvaluationVersionEnum evaluationVersion;
|
private EvaluationVersionEnum evaluationVersion;
|
||||||
|
|
||||||
|
|||||||
@@ -44,8 +44,8 @@ public class ApplicationEvaluationResponse {
|
|||||||
private BigDecimal amountAccepted;
|
private BigDecimal amountAccepted;
|
||||||
private LocalDateTime dateAccepted;
|
private LocalDateTime dateAccepted;
|
||||||
private LocalDateTime dateRejected;
|
private LocalDateTime dateRejected;
|
||||||
private BigDecimal numberOfCheck;
|
private Long numberOfCheck;
|
||||||
private BigDecimal productId;
|
private Long productId;
|
||||||
private EvaluationVersionEnum evaluationVersion;
|
private EvaluationVersionEnum evaluationVersion;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,8 +24,8 @@ public class AssignedApplicationsResponse extends BaseBean {
|
|||||||
private LocalDateTime callEndDate;
|
private LocalDateTime callEndDate;
|
||||||
private String companyName;
|
private String companyName;
|
||||||
private LocalDateTime evaluationEndDate;
|
private LocalDateTime evaluationEndDate;
|
||||||
private BigDecimal numberOfCheck;
|
private Long numberOfCheck;
|
||||||
private BigDecimal productId;
|
private Long productId;
|
||||||
private EvaluationVersionEnum evaluationVersion;
|
private EvaluationVersionEnum evaluationVersion;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -57,9 +57,9 @@ public class CallDetailsResponseBean {
|
|||||||
|
|
||||||
private Long preferredCallId;
|
private Long preferredCallId;
|
||||||
|
|
||||||
private BigDecimal numberOfCheck;
|
private Long numberOfCheck;
|
||||||
|
|
||||||
private BigDecimal productId;
|
private Long productId;
|
||||||
|
|
||||||
private EvaluationVersionEnum evaluationVersion;
|
private EvaluationVersionEnum evaluationVersion;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,9 +50,9 @@ public class CallResponse {
|
|||||||
|
|
||||||
private String phoneNumber;
|
private String phoneNumber;
|
||||||
|
|
||||||
private BigDecimal numberOfCheck;
|
private Long numberOfCheck;
|
||||||
|
|
||||||
private BigDecimal productId;
|
private Long productId;
|
||||||
|
|
||||||
@JsonSerialize(using = DynamicLocalTimeSerializer.class)
|
@JsonSerialize(using = DynamicLocalTimeSerializer.class)
|
||||||
private LocalTime startTime;
|
private LocalTime startTime;
|
||||||
|
|||||||
@@ -2413,4 +2413,9 @@
|
|||||||
|
|
||||||
</changeSet>
|
</changeSet>
|
||||||
|
|
||||||
|
<changeSet id="11-02-2025_NK_180615" author="Nisha Kashyap">
|
||||||
|
<modifyDataType tableName="call" columnName="number_of_check" newDataType="INTEGER"/>
|
||||||
|
<modifyDataType tableName="call" columnName="product_id" newDataType="INTEGER"/>
|
||||||
|
</changeSet>
|
||||||
|
|
||||||
</databaseChangeLog>
|
</databaseChangeLog>
|
||||||
|
|||||||
Reference in New Issue
Block a user