isPaidを追加

This commit is contained in:
ろむねこ 2024-07-22 11:33:05 +09:00
parent a0cf1f3ab3
commit c79f9e5469
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -19,6 +19,7 @@ public class HistoryModelConverter { // TODO: JavaDoc
historyModel.setTaskId(historyResponse.getTaskId());
historyModel.setChildId(historyResponse.getChildId());
historyModel.setRegisteredAt(historyResponse.getRegisteredAt());
historyModel.setPaid(historyResponse.isPaid());
return historyModel;
}
@ -28,6 +29,7 @@ public class HistoryModelConverter { // TODO: JavaDoc
historyResponse.setTaskId(historyModel.getTaskId());
historyResponse.setChildId(historyModel.getChildId());
historyResponse.setRegisteredAt(historyModel.getRegisteredAt());
historyResponse.setPaid(historyModel.isPaid());
return historyResponse;
}