⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 906ca3787480001c1eb8d241542ba17d

📁 一个超市管理系统,提供一些基本简单的操作,JSP+APACHE+ORCALE实现
💻
字号:
package bb;

import java.util.Date;
import java.sql.*;

public class ProductMessage 
{
  private int pro_id,quantity,pro_mer,year,month,day;
  private String pro_name,type;
  private java.sql.Date manu_date,avail_date;
  private float sto_price,price;
  
  public void setPro_id(int pro_id)
  {
	  this.pro_id=pro_id;
  }
  public int getPro_id()
  {
	  return pro_id;
  }
  public void setQuantity(int quantity)
  {
	  this.quantity=quantity;
  }
  public int getQuantity()
  {
	  return quantity;
  }
  public void setPro_name(String pro_name)
  {
	  this.pro_name=pro_name;
  }
  public String getPro_name()
  {
	  return pro_name;
  }
  public void setType(String type)
  {
	  this.type=type;
  }
  public String getType()
  {
	  return type;
  }
  public void setPro_mer(int pro_mer)
  {
	  this.pro_mer=pro_mer;
  }
  public int getPro_mer()
  {
	  return pro_mer;
  }
  public void setManu_date(int year,int month,int day)
  {   Date date= new Date();
	  date.year=year;
	  date.month=month;
	  date.day=day;

	  
  }
  public java.sql.Date getManu_date()
  {
	  return manu_date; 
  }
  public void setAvail_date(java.sql.Date avail_date)
  {
	  this.avail_date=avail_date;
  }
  public java.sql.Date getAvail_date()
  {
	  return avail_date;
  }
  public void setSto_price(float sto_price)
  {
	  this.sto_price=sto_price;
  }
  public float getSto_price()
  {
	  return sto_price;
  }
  public void setPrice(float price)
  {
	  this.price=price;
  }
  public float getPrice()
  {
	  return price;
  }
  
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -