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

📄 brandform.java

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

import org.apache.struts.upload.FormFile;

public class BrandForm extends BaseForm {
	private String name;
	private FormFile logofile;
	private String code;
	private String logoimagepath;
	

	public String getLogoimagepath() {
		return logoimagepath;
	}

	public void setLogoimagepath(String logoimagepath) {
		this.logoimagepath = logoimagepath;
	}

	public String getCode() {
		return code;
	}

	public void setCode(String code) {
		this.code = code;
	}

	public FormFile getLogofile() {
		return logofile;
	}

	public void setLogofile(FormFile logofile) {
		this.logofile = logofile;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}
}

⌨️ 快捷键说明

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