📄 display.java
字号:
/**
*
*/
package com.chinaaccpbean;
/**
* @author liu
*
*/
public class Display {
private int id;
private String name;
private double price;
private String discinfo;
private String imgpath;
private String bigimgpath;
/**
* @return bigimgpath
*/
public String getBigimgpath() {
return bigimgpath;
}
/**
* @param bigimgpath 要设置的 bigimgpath
*/
public void setBigimgpath(String bigimgpath) {
this.bigimgpath = bigimgpath;
}
/**
* @return imgpath
*/
public String getImgpath() {
return imgpath;
}
/**
* @param imgpath 要设置的 imgpath
*/
public void setImgpath(String imgpath) {
this.imgpath = imgpath;
}
/**
* @return name
*/
public String getName() {
return name;
}
/**
* @param name 要设置的 name
*/
public void setName(String name) {
this.name = name;
}
/**
* @return price
*/
public double getPrice() {
return price;
}
/**
* @param price 要设置的 price
*/
public void setPrice(double price) {
this.price = price;
}
/**
* @return id
*/
public int getId() {
return id;
}
/**
* @param id 要设置的 id
*/
public void setId(int id) {
this.id = id;
}
public String getDiscinfo() {
return discinfo;
}
public void setDiscinfo(String discinfo) {
this.discinfo = discinfo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -