Merge remote-tracking branch 'origin/dev' into dev

main
13009 2024-07-30 17:21:04 +08:00
commit 2807c889d1
2 changed files with 5 additions and 6 deletions

View File

@ -62,12 +62,11 @@ public class OfflineRechargeDetailUnmatchedQueryResponse implements ApiResponse
*/
@SerializedName("match_status")
private String matchStatus;
/**
*
*
*/
@SerializedName("total_match_amount")
private BigDecimal totalMatchAmount;
@SerializedName("match_amount")
private BigDecimal matchAmount;
/**
* 0 1 2 3 4 5 6 7 8 A B C D E F
*/

View File

@ -1064,7 +1064,7 @@ class PayServiceTest {
void extractedOfflineRechargeDetailUnmatchedQueryResponseOfflineRechargeDetailUnmatchedDTONestParams(OfflineRechargeDetailUnmatchedQueryResponse.OfflineRechargeDetailUnmatchedDTO nest) {
nest.setOppAccountNo("setOppAccountNo");
nest.setAccountNo("setAccountNo");
nest.setTotalMatchAmount(BigDecimal.valueOf(100.00));
nest.setMatchAmount(BigDecimal.valueOf(100.00));
nest.setCoreAccountNo("setCoreAccountNo");
nest.setRedoFlag("setRedoFlag");
nest.setSeqNo("setSeqNo");
@ -1082,7 +1082,7 @@ class PayServiceTest {
void extractedOfflineRechargeDetailUnmatchedQueryResponseOfflineRechargeDetailUnmatchedDTONestAssertions(OfflineRechargeDetailUnmatchedQueryResponse.OfflineRechargeDetailUnmatchedDTO nest) {
Assertions.assertEquals("setOppAccountNo", nest.getOppAccountNo());
Assertions.assertEquals("setAccountNo", nest.getAccountNo());
Assertions.assertEquals(BigDecimal.valueOf(100.00), nest.getTotalMatchAmount());
Assertions.assertEquals(BigDecimal.valueOf(100.00), nest.getMatchAmount());
Assertions.assertEquals("setCoreAccountNo", nest.getCoreAccountNo());
Assertions.assertEquals("setRedoFlag", nest.getRedoFlag());
Assertions.assertEquals("setSeqNo", nest.getSeqNo());