?? dailysales.jad
字號:
// Decompiled by DJ v3.7.7.81 Copyright 2004 Atanas Neshkov Date: 2008-7-17 9:43:20
// Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: DailySales.java
package javaBean;
import java.io.Serializable;
public class DailySales
implements Serializable
{
public DailySales(int pid, String productNo, String productName, int number, int money)
{
id = pid;
this.productNo = productNo;
this.productName = productName;
this.number = number;
this.money = money;
}
public String getProductNo()
{
return productNo;
}
public void setProductNo(String productNo)
{
this.productNo = productNo;
}
public String getProductName()
{
return productName;
}
public void setProductName(String productName)
{
this.productName = productName;
}
public int getNumber()
{
return number;
}
public void setNumber(int number)
{
this.number = number;
}
public int getMoney()
{
return money;
}
public void setMoney(int money)
{
this.money = money;
}
public int getId()
{
return id;
}
public void setId(int id)
{
this.id = id;
}
private static final long serialVersionUID = 1L;
private String productNo;
private String productName;
private int number;
private int money;
private int id;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -