Package com.fengjing.framework.ibatis.model

Examples of com.fengjing.framework.ibatis.model.Product


    }
  }
 
  @Test
  public void save(){
    Product product=new Product();
    product.setName("ipad2");
    product.setPrice(3000.f);
    product.setDescription("ipad2");
    product.setCategoryid("1");
    boolean b=productService.save(product);
    System.out.println(b);
   
  }
View Full Code Here


  }
 
 
  @Test
  public void update(){
    Product product=productService.getModel(3);
    product.setName("����");
    product.setDescription("�����ʼDZ�");
    boolean b=productService.update(product);
    System.out.println(b);
   
  }
View Full Code Here

TOP

Related Classes of com.fengjing.framework.ibatis.model.Product

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.