ホーム :buriチュートリアル :buriを使っての実行およびデータの取得 :


フローを実行する

前へ 次へ

まずはDtoを準備します

FurnitureItemDto buyItemDto = new FurnitureItemDto();
buyItemDto.setName("T45_001");
buyItemDto.setType("PC");
buyItemDto.setAcquisitionTypeBuy();
buyItemDto.setAcquisition(new Date());

実行用のメソッドを追加します
fmBao_.enterItem(buyItemDto);

これだけでさっき書いたフローの備品登録が呼びだされ、利用中として保持されます。


buriを使っての実行およびデータの取得 に戻る