|
|
@@ -87,6 +87,7 @@ public class StoreInFacadeImpl implements StoreInFacade {
|
|
|
enter.setEnPhone(store.getEnterprise().getEnPhone());
|
|
|
enter.setEnWeixin(store.getEnterprise().getEnWeixin());
|
|
|
enter.setEnQQ(store.getEnterprise().getEnQQ());
|
|
|
+ enter.setDescription(store.getEnterprise().getDescription());
|
|
|
enterpriseDao.save(enter);
|
|
|
}
|
|
|
store = storeInDao.save(store);
|
|
|
@@ -122,6 +123,7 @@ public class StoreInFacadeImpl implements StoreInFacade {
|
|
|
enterprise.setEnPhone(newEnterprise.getEnPhone());
|
|
|
enterprise.setEnWeixin(newEnterprise.getEnWeixin());
|
|
|
enterprise.setEnQQ(newEnterprise.getEnQQ());
|
|
|
+ enterprise.setDescription(newEnterprise.getDescription());
|
|
|
store.setEnterprise(enterprise);
|
|
|
return null;
|
|
|
}
|