* 修复订单一对多
*@Author JueYue
*@date 2013-11-12
*/
private void repairOrder() {
JeecgOrderMainEntity main = new JeecgOrderMainEntity();
main.setGoAllPrice(new BigDecimal(1111111));
main.setGoContactName("alex");
main.setGoContent("别放辣椒");
main.setGoderType("1");
main.setGoOrderCode("11111AAA");
main.setGoOrderCount(1);
main.setGoReturnPrice(new BigDecimal(100));
main.setUsertype("1");
commonDao.save(main);
JeecgOrderProductEntity product = new JeecgOrderProductEntity();
product.setGoOrderCode(main.getGoOrderCode());
product.setGopCount(1);
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);
}