📄 prodect.java
字号:
package com.today.prodect.vo;
public class Prodect {
// 商品ID
private int p_id;
// 商品名称
private String p_name;
// 商品介绍
private String p_content;
// 商品价格
private float p_price;
// 商品图片
private byte[] p_img;
// 图片存放地址
private String p_ipath;
public int getP_id() {
return p_id;
}
public void setP_id(int p_id) {
this.p_id = p_id;
}
public String getP_name() {
return p_name;
}
public void setP_name(String p_name) {
this.p_name = p_name;
}
public String getP_content() {
return p_content;
}
public void setP_content(String p_content) {
this.p_content = p_content;
}
public byte[] getP_img() {
return p_img;
}
public void setP_img(byte[] p_img) {
this.p_img = p_img;
}
public String getP_ipath() {
return p_ipath;
}
public void setP_ipath(String p_ipath) {
this.p_ipath = p_ipath;
}
public void setP_price(float p_price) {
this.p_price = p_price;
}
public float getP_price() {
return p_price;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -