Package com.skymobi.qc.admin.dal.domain

Examples of com.skymobi.qc.admin.dal.domain.CpqaProject


          //数据
          XSSFRow row;
          for (int i = sheet.getFirstRowNum()+1; i < sheet.getPhysicalNumberOfRows(); i++) {
              row = sheet.getRow(i);
             
              CpqaProject cpqaProject = new CpqaProject();
            cpqaProject.setApp_show_name( getCellData(row,titleMap,"中文名") );
            cpqaProject.setApp_short_name( getCellData(row,titleMap,"短名称") );
            cpqaProject.setSdk_version( getCellData(row,titleMap,"SDK版本号") );
            cpqaProject.setApp_version( getCellIntData(row,titleMap,"版本号") );
            cpqaProject.setAppid( getCellIntData(row,titleMap,"APPID") );
            cpqaProject.setChannel( getCellData(row,titleMap,"通道") );
            cpqaProject.setDeveloper( getCellData(row,titleMap,"开发商") );
            cpqaProject.setApp_type( getCellData(row,titleMap,"类型") );
            cpqaProject.setSpecial_tech( getCellData(row,titleMap,"特殊技术") );
            cpqaProject.setOperate_type( getCellData(row,titleMap,"操作类型") );
            cpqaProject.setPlat( getCellData(row,titleMap,"平台") );
            cpqaProject.setScreen( getCellData(row,titleMap,"原始屏幕") );
            cpqaProject.setAdapt_screen( getCellData(row,titleMap,"适配屏幕") );
            cpqaProject.setMemory( getCellData(row,titleMap,"内存(K)") );
            cpqaProject.setMemory_top( getCellIntData(row,titleMap,"实际峰值(K)") );
            cpqaProject.setMrp_size( getCellData(row,titleMap,"MRP包大小(K)") );
            cpqaProject.setCharge( getCellData(row,titleMap,"收费策略") );
            cpqaProject.setNotice_315( getCellData(row,titleMap,"315内容") );
            cpqaProject.setRelease_time( getCellDateData(row,titleMap,"发布时间") );
            cpqaProject.setConfirm_user( getCellData(row,titleMap,"确认人") );
            cpqaProject.setProject_type( getCellData(row,titleMap,"项目类型") );
            cpqaProject.setChange_log( getCellData(row,titleMap,"版本变更内容") );
            cpqaProject.setIntroduce( getCellData(row,titleMap,"简介") );
            cpqaProject.setSvn( getCellData(row,titleMap,"编译包版本地址") );
            cpqaProject.setSvn_time( getCellDateData(row,titleMap,"SVN上传时间") );
            cpqaProject.setUsername("胡凯");
           
            cpqaMapper.insertCpqaProject(cpqaProject);
          }
     
    } catch (FileNotFoundException e) {
View Full Code Here

TOP

Related Classes of com.skymobi.qc.admin.dal.domain.CpqaProject

Copyright © 2018 www.massapicom. 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.