parent
26d8b67ef6
commit
9eebcf670e
@ -0,0 +1,25 @@ |
|||||||
|
//--------------------------------
|
||||||
|
// AddByRecipeDTO.java
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 更新履歴:2025/06/18 新規作成
|
||||||
|
// Copyright(c) 2025 IVIS All rights reserved.
|
||||||
|
//--------------------------------------------
|
||||||
|
package com.example.todoapp.dto; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* 料理からの買うものリスト追加データ転送オブジェクト(DTO) |
||||||
|
* <p> |
||||||
|
* このクラスはクライアントとサーバー間で料理情報をやり取りするために使用されます。 |
||||||
|
* エンティティとは異なり、必要な情報のみを含み、関連エンティティへの参照ではなくIDのみを保持します。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
|
||||||
|
@Data |
||||||
|
public class AddByRecipeDTO { |
||||||
|
private Long recipeId; |
||||||
|
private Long servings; |
||||||
|
private Boolean difference; |
||||||
|
} |
Loading…
Reference in new issue