Package org.jeecgframework.web.demo.entity.test

Examples of org.jeecgframework.web.demo.entity.test.JeecgOrderCustomEntity


    product.setGopOnePrice(new BigDecimal(100));
    product.setGopProductName("最最美味的地锅鸡");
    product.setGopProductType("1");
    product.setGopSumPrice(new BigDecimal(100));
    commonDao.save(product);
    JeecgOrderCustomEntity coustom = new JeecgOrderCustomEntity();
    coustom.setGoOrderCode(main.getGoOrderCode());
    coustom.setGocCusName("小明");
    coustom.setGocSex("1");
    commonDao.save(coustom);
  }
View Full Code Here

TOP

Related Classes of org.jeecgframework.web.demo.entity.test.JeecgOrderCustomEntity

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.