Package org.c3s.data.mapers

Examples of org.c3s.data.mapers.DataMapper.map()


        Map<String, Object> info = (Map<String, Object>)files.get(key);
        DBFilesBean bean = DbAccess.filesAccess.getFileByGameIdAndFileId(game_id, file_id);
        bean.setState((String) info.get("state"));
        bean.setLinkType((String) info.get("type"));
        if (update && bean.getGameFileId() != null && ("insert".equals(bean.getState()) || "none".equals(bean.getState()))) {
          DbAccess.gameFilesAccess.updateByPrimaryKey(mapper.map(bean, DBGameFilesBean.class), bean.getGameFileId());
        } else if (update && bean.getGameFileId() != null && "delete".equals(bean.getState())) {
          DbAccess.gameFilesAccess.deleteByPrimaryKey(bean.getGameFileId());
        } else if (update && bean.getGameFileId() == null && "insert".equals(bean.getState())) {
          DBGameFilesBean newBean = new DBGameFilesBean().
              setFileId(file_id).setGameId(game_id).setLinkType(bean.getLinkType()).setIsActive(1);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.