JSON解析

     
                //添加明細    維修表id傳入                          
                List<RepairPartEntity> entityList = JSON.parseArray(list,RepairPartEntity.class);
                
                for (RepairPartEntity entity : entityList) {
                    
                    Map<String, Object> map = new HashMap<String, Object>();
                    
                    BeanUtils.populate(entity,map);
                  
                    map.put("zc_repair_id",zc_repair_id);
                    map.put("repair_part",repair_part);
                    map.put("spare_part",spare_part);
                    map.put("specification",specification);
                    map.put("amount",amount);
                    map.put("create_userid",create_userid);
                    map.put("create_time",new Date());
                    map.put("remark",remark);
                    
                    //明細插入
                    operationsService.inserTrepairitems(map);

 

 public ServerResponse applyForWork(Integer userId, String postId, String companyId) {
    	List<ResumePostRelation> aAStrings=new ArrayList<ResumePostRelation>();
    	
    	String []post  = postId.split(",");
    	String []compa  = companyId.split(",");
    	
    	for (int i = 0; i < post.length; i++) {
			
    		ResumePostRelation resumePostRelation = new ResumePostRelation();
			resumePostRelation.setUserId(userId);
	        resumePostRelation.setPostId(Integer.parseInt(post[i]));
	        resumePostRelation.setCompanyId(Integer.parseInt(compa[i]));
	        resumePostRelation.setRelation(1);
	        aAStrings.add(resumePostRelation);		
		}
    	

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章