📄 wares.java
字号:
package com;
import java.sql.*;
public class Wares {
public int WaresId;
public int Sort;
public String Name;
public double MarketPrice;
public double Price;
public String SmallImg;
public String BigImg;
public String Description;
public void Cart() {
}
public void setOne(int WaresId, int Sort,String Name,
double MarketPrice, double Price, String SmallImg,
String BigImg, String Description )
{
this.WaresId=WaresId;
this.Sort = Sort;
this.Price = Price;
this.Name = Name;
this.MarketPrice = MarketPrice;
this.SmallImg = SmallImg;
this.BigImg = BigImg;
this.Description = Description;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -