コード例 #1
0
ファイル: StoreFactory.java プロジェクト: junbeomlee/Yeshow
 public Store makeStoreEntity(long storeNum, String storeName) {
   Store store = new Store();
   store.setStore_number(storeNum);
   store.setStore_name(storeName);
   return store;
 }