wares.java
来自「本例讲述了如何使用JSP技术编写在线商务沟通系统」· Java 代码 · 共 31 行
JAVA
31 行
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 + =
减小字号Ctrl + -
显示快捷键?