国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

??
5?? ?? :" >5?? ?? :
? php教程 php手冊(cè) ???? 7--?? ??

???? 7--?? ??

Nov 30, 2016 pm 11:59 PM

1.??? ???:

CREATE TABLE `orders` (
  `oid` int(11) NOT NULL AUTO_INCREMENT,
  `total` double DEFAULT NULL,
  `ordertime` datetime DEFAULT NULL,
  `state` int(11) DEFAULT NULL,
  `name` varchar(20) DEFAULT NULL,
  `addr` varchar(100) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `uid` int(11) DEFAULT NULL,
  PRIMARY KEY (`oid`),
  KEY `FKC3DF62E5AA3D9C7` (`uid`),
  CONSTRAINT `FKC3DF62E5AA3D9C7` FOREIGN KEY (`uid`) REFERENCES `user` (`uid`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `orderitem` (
  `itemid` int(11) NOT NULL AUTO_INCREMENT,
  `count` int(11) DEFAULT NULL,
  `subtotal` double DEFAULT NULL,
  `pid` int(11) DEFAULT NULL,
  `oid` int(11) DEFAULT NULL,
  PRIMARY KEY (`itemid`),
  KEY `FKE8B2AB6166C01961` (`oid`),
  KEY `FKE8B2AB6171DB7AE4` (`pid`),
  CONSTRAINT `FKE8B2AB6166C01961` FOREIGN KEY (`oid`) REFERENCES `orders` (`oid`),
  CONSTRAINT `FKE8B2AB6171DB7AE4` FOREIGN KEY (`pid`) REFERENCES `product` (`pid`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

2.?

public class Order {
	private Integer oid;
	private Double total;
	private Date ordertime;
	private String name;
	private String addr;
	private String phone;
	private Integer state;
	// 與用戶的關(guān)聯(lián)關(guān)系
	private User user;
	// 與訂單項(xiàng)關(guān)聯(lián)關(guān)系
	private Set<OrderItem> orderItems = new HashSet<OrderItem>();
        ....
}

public class OrderItem {
	private Integer itemid;
	private Integer count;
	private Double subtotal;
	private Product product;
	private Order order;
        ....
}

 

3. ?? ??

public String createOrder() {
	// 將Order對(duì)象存入到數(shù)據(jù)庫中:
	// 封裝Order對(duì)象:
	Order order = new Order();
	// 封裝總價(jià)---從購物車的信息獲得.
	// 獲得購物車:
	Cart cart = (Cart) ServletActionContext.getRequest().getSession()
			.getAttribute("cart");
	// 判斷:
	if (cart == null) {
		this.addActionError("親!您還沒有購物!請(qǐng)先去購物!");
		return "msg";
	}
	// 設(shè)置所屬用戶:
	User existUser = (User) ServletActionContext.getRequest().getSession()
			.getAttribute("existUser");
	if (existUser == null) {
		this.addActionError("親!您還沒有登錄!請(qǐng)先去登錄!");
		return "msg";
	}
	order.setUser(existUser);
	order.setTotal(cart.getTotal());
	// 封裝時(shí)間
	order.setOrdertime(new Date());
	// 封裝狀態(tài)
	order.setState(1); // 1 未付款 2 已經(jīng)付款,未發(fā)貨 3.已經(jīng)發(fā)貨,沒有確認(rèn)收貨 4.訂單完成.
	// 為訂單設(shè)置訂單項(xiàng)集合:
	for (CartItem cartItem : cart.getCartItems()) {
		// 將購物項(xiàng)的數(shù)據(jù)封裝到訂單項(xiàng)中.
		OrderItem orderItem = new OrderItem();
		orderItem.setCount(cartItem.getCount());
		orderItem.setSubtotal(cartItem.getSubtotal());
		orderItem.setProduct(cartItem.getProduct());
		orderItem.setOrder(order);
		// 放入訂單的集合:
		order.getOrderItems().add(orderItem);
	}
	// 購物車清空了.
	cart.clearCart();
	// 調(diào)用Service保存訂單的操作:
	orderService.save(order);

	// 將訂單存入到值棧中:
	ActionContext.getContext().getValueStack().set("order", order);
	// 頁面跳轉(zhuǎn):
	return "createOrderSuccess";
}

 

4. ? ??? ?????

1.??? id

? ?? ?? ??

5?? ?? :

1.?? ???ID?? ??

 

? ????? ??
? ?? ??? ????? ???? ??? ??????, ???? ?????? ????. ? ???? ?? ???? ?? ??? ?? ????. ???? ??? ???? ???? ??? ?? admin@php.cn?? ?????.

? AI ??

Undresser.AI Undress

Undresser.AI Undress

???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover

AI Clothes Remover

???? ?? ???? ??? AI ?????.

Video Face Swap

Video Face Swap

??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

???

??? ??

???++7.3.1

???++7.3.1

???? ?? ?? ?? ???

SublimeText3 ??? ??

SublimeText3 ??? ??

??? ??, ???? ?? ????.

???? 13.0.1 ???

???? 13.0.1 ???

??? PHP ?? ?? ??

???? CS6

???? CS6

??? ? ?? ??

SublimeText3 Mac ??

SublimeText3 Mac ??

? ??? ?? ?? ?????(SublimeText3)

???

??? ??

??? ????
1600
29
PHP ????
1502
276
???