productsec.java~55~

来自「这也是师兄的毕业设计,具体的功能我也不清楚,因为我才大一,请见谅!!!!!!!不」· JAVA~55~ 代码 · 共 34 行

JAVA~55~
34
字号
package product;import javax.ejb.*;import java.util.*;import java.rmi.*;import java.awt.Image;public interface productSec extends javax.ejb.EJBObject {  public String find_prod_basic_pk(String p_id) throws RemoteException;  public void in_Prod_basic(String p_id, String p_type_id, String p_name, String p_spec, String p_model, String p_unit, Image p_image, String p_remark) throws RemoteException;  public String find_prod_basic_maxpk() throws RemoteException;  public boolean mod_type_pk(String pk, String name, String remark) throws RemoteException;  public boolean del_type_pk(String pk) throws RemoteException;  public String find_type_maxpk() throws RemoteException;  public String find_type_pk(String name) throws RemoteException;  public java.util.Collection find_type_name(String name) throws RemoteException;  public java.util.Collection find_prod_basic_name(String name) throws RemoteException;  public LinkedList find_type_search(int type, String content) throws RemoteException;  public LinkedList find_prod_search(int operation, String type, String content) throws RemoteException;  public boolean del_prod_pk(String pk) throws RemoteException;  public boolean mod_prod_pk(String p_id, String p_type_id, String p_name, String p_spec, String p_model, String p_unit, Image p_image, String p_remark) throws RemoteException;  public void in_prod_pb(String p_id, float p_tax, int p_amount, int p_maxlow, float p_bprice, float p_sprice, String p_state, String p_depositary) throws RemoteException;  public boolean mod_prod_pb(String pid, float tax, int amount, int maxlow, float bprice, float sprice, String state, String depositary) throws RemoteException;  public boolean del_prod_pb(String pid) throws RemoteException;  public java.util.Collection find_prod_pb_search(String type, String condition, String content) throws RemoteException;  public boolean in_prod_in_stock(String pid, int serno, int num, float buyprice, String buydate, String batchno, String validity, String area, String state) throws RemoteException;  public boolean mod_prod_in_stock(String pid, int serno, int num, float buyprice, String buydate, String batchno, String validity, String area, String state) throws RemoteException;  public boolean del_prod_in_stock(String pid, int serno) throws RemoteException;  public LinkedList find_prod_in_stock(String type, String condition, String content) throws RemoteException;  public int  find_prod_in_stock_maxpk(String id) throws RemoteException;  public LinkedList find_alltype() throws RemoteException;  public void in_type(String type_id, String name, String remark) throws RemoteException;}

⌨️ 快捷键说明

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