⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cartform.java

📁 巴巴运动网源码 传智博客出品 不全 一部分代码 可以参考
💻 JAVA
字号:
package com.itcast.web.formbean.product;

public class CartForm extends BaseForm {
	private Integer productid;
	private Integer styleid;
	private String buyitemid;
	
	public String getBuyitemid() {
		return buyitemid;
	}
	public void setBuyitemid(String buyitemid) {//productid-styleid
		this.buyitemid = buyitemid;
		if(this.buyitemid!=null){
			String[] values = this.buyitemid.split("-");
			if(values.length==2){
				this.productid = new Integer(values[0]);
				this.styleid = new Integer(values[1]);
			}
		}
	}
	public Integer getProductid() {
		return productid;
	}
	public void setProductid(Integer productid) {
		this.productid = productid;
	}
	public Integer getStyleid() {
		return styleid;
	}
	public void setStyleid(Integer styleid) {
		this.styleid = styleid;
	}
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -