📄 goods.java
字号:
package com.eshop.dto;
public class Goods {
private int id = 0; //编号
private String brand = ""; //手机品牌
private String type = ""; //手机型号
private String introduc = ""; //手机简介
private double price = 0; //市场价格
private double nowprice = 0; //折扣价格
private String picture = ""; //手机图片
private String intime = ""; //发布时间
private int saletol = 0; //购买次数
public int getId(){
return this.id;
}
public void setId(int id){
this.id = id;
}
public String getBrand(){
return this.brand ;
}
public void setBrand(String brand){
this.brand = brand;
}
public String getType(){
return this.type;
}
public void setType(String type){
this.type = type;
}
public String getIntroduc(){
return this.introduc;
}
public void setIntroduc(String introduc){
this.introduc = introduc;
}
public double getPrice(){
return this.price;
}
public void setPrice(double price){
this.price = price;
}
public double getNowprice(){
return this.nowprice;
}
public void setNowprice(double nowprice ){
this.nowprice = nowprice;
}
public String getPicture(){
return this.picture;
}
public void setPicture(String picture){
this.picture = picture;
}
public String getIntime(){
return this.intime;
}
public void setIntime(String intime){
this.intime = intime;
}
public int getSaletol(){
return this.saletol;
}
public void setSaletol(int Saletol){
this.saletol = Saletol;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -