亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? stockmanagementdata.java

?? java進銷存信息管理系統,實現了倉庫產品價格人員報表等功能
?? JAVA
字號:
package stockmanagementpro;

import javax.ejb.*;
import java.util.*;
import java.rmi.*;
import user.*;
import java.sql.*;

public interface StockManagementData
    extends javax.ejb.EJBObject {
  public int[] checkUser(String userName, String userPassword) throws RemoteException;
  public int createUser(User user) throws RemoteException;
  public int updateUser(User user) throws RemoteException;
  public int deleteUser(User user) throws RemoteException;
  public String[][] getUserByUserName(String userName) throws RemoteException;
  public int createUserLog(String programName, String operationContent,
                           String userName) throws RemoteException;
  public int deleteUserLog(Integer id) throws RemoteException;
  public String[] getTableNames() throws RemoteException;
  public String[][] getDataByTableName(String tableName) throws RemoteException;
  public int setDataByTableName(String tableName, String[][] data) throws RemoteException;
  public String[] getLedgerNames() throws RemoteException;
  public int createLedger(String ledgerDate) throws RemoteException;
  public int deleteLedger(String ledgerDate) throws RemoteException;
  public int createGoodsCategory(int parentId, String categoryName, String categoryDescription) throws RemoteException;
  public int updateGoodsCategory(int categoryId, int parentId, String categoryName, String categoryDescription) throws RemoteException;
  public int deleteGoodsCategory(int categoryId) throws RemoteException;
  public String[][] getAllGoodsCategory() throws RemoteException;
  public int createGoods(String goodsBarCode, int categoryId, String goodsName, String goodsNickName, String goodsAssistantName, String goodsPYName, String unit, String specification, String producer, int upperLimit, int lowerLimit, double salePrice, double discount) throws RemoteException;
  public int updateGoods(String goodsBarCode, int categoryId, String goodsName, String goodsNickName, String goodsAssistantName, String goodsPYName, String unit, String specification, String producer, int upperLimit, int lowerLimit, double salePrice, double discount) throws RemoteException;
  public int deleteGoods(String goodsBarCode) throws RemoteException;
  public String[][] getGoodsByGoodsCategory(int goodsCategory) throws RemoteException;
  public String[][] getGoodsByGoodsBarCode(String goodsBarCode) throws RemoteException;
  public String[][] getGoodsByGoodsName(String goodsName) throws RemoteException;
  public String[][] getGoodsByProducer(String producer) throws RemoteException;
  public String[][] getDiscountGoods() throws RemoteException;
  public int setGoodsDiscount(String goodsBarCode, double discount) throws RemoteException;
  public int createSupplier(String[] supplierArray) throws RemoteException;
  public int updateSupplier(String[] supplierArray) throws RemoteException;
  public int deleteSupplier(String supplierName) throws RemoteException;
  public String[][] getSuppliersBySupplierName(String supplierName) throws RemoteException;
  public String[][] getSuppliersBySupplierZone(String supplierZone) throws RemoteException;
  public int createCustomer(String[] customerArray) throws RemoteException;
  public int updateCustomer(String[] customerArray) throws RemoteException;
  public int deleteCustomer(String customerName) throws RemoteException;
  public String[][] getCustomersByCustomerName(String customerName) throws RemoteException;
  public String[][] getCustomersByCustomerZone(String customerZone) throws RemoteException;
  public String[][] getCreditCustomer() throws RemoteException;
  public int setCreditCustomer(String customerName, double creditlimit) throws RemoteException;
  public int createWarehouse(String[] warehouseArray) throws RemoteException;
  public int updateWarehouse(String[] warehouseArray) throws RemoteException;
  public int deleteWarehouse(String warehouseName) throws RemoteException;
  public String[][] getAllWarehouse() throws RemoteException;
  public int createAccountName(int parentId, String accountNameStr) throws RemoteException;
  public int updateAccountName(int accountId, int parentId, String accountNameStr) throws RemoteException;
  public int deleteAccountName(int accountId) throws RemoteException;
  public String[][] getAccountNameByParentid(int parentId) throws RemoteException;
  public String[][] getAllAccountName() throws RemoteException;  public String[][] getAccountBalance(String ledgerDate, int onProcess) throws RemoteException;
  public String[][] getUserLogByProgramName(String programName) throws RemoteException;
  public String[][] getUserLogByOperationContent(String operationContent) throws RemoteException;
  public String[][] getUserLogByUserName(String userName) throws RemoteException;
  public String[][] getUserLogByOperationDate(Timestamp startDate, Timestamp endDate) throws RemoteException;
  public String[][] getStockLedgerByStringField(String ledgerDate, String fieldName, String fieldValue, int orderType) throws RemoteException;
  public String[][] getStockLedgerByOrderDate(String ledgerDate, Timestamp startDate, Timestamp endDate, int orderType) throws RemoteException;
  public String[][] getStockSubLedgerByOrderId(String ledgerDate, String orderId) throws RemoteException;
  public int createStockLedgerAndSub(String ledgerDate, String[] stockLedger, String[][] stockSubLedger) throws RemoteException;
  public int updateStockLedgerAndSub(String ledgerDate, String[] stockLedger, String[][] stockSubLedger) throws RemoteException;
  public int cancelStockLedgerAndSub(String ledgerDate, String orderId, String remark) throws RemoteException;
  public int restoreStockLedgerAndSub(String ledgerDate, String orderId, String remark) throws RemoteException;
  public int signStockLedgerAndSub(String ledgerDate, String fieldName, String userName, String orderId, String remark) throws RemoteException;
  public String[][] getStockLedgerByOnProcess(String ledgerDate, int orderType, int onProcess) throws RemoteException;
  public int createAccountEntry(String ledgerDate, String[] accountEntryLedger, String[][] accountEntrySubLedger, boolean inTransaction, Connection connIn) throws RemoteException;
  public int createCurrentAccountLedger(String ledgerDate, String[] currentAccountLedger, boolean inTransaction, Connection connIn) throws RemoteException;
  public String[] getCurrentAccountLedgerBylinkId(String ledgerDate, String linkId) throws RemoteException;
  public int checkUserSignStockLedgerAndSub(String ledgerDate, String userName, String supplierName, String orderId, String remark) throws RemoteException;
  public String[][] getCurrentAccountLedgerByStringField(String ledgerDate, String fieldName, String fieldValue, int documentType) throws RemoteException;
  public String[][] getCurrentAccountLedgerByOnProcess(String ledgerDate, int documentType, int onProcess) throws RemoteException;
  public String[][] getCurrentAccountLedgerByFillDate(String ledgerDate, Timestamp startDate, Timestamp endDate, int documentType) throws RemoteException;
  public int createCashLedger(String ledgerDate, String[] cashLedger, boolean inTransaction, Connection connIn) throws RemoteException;
  public int cashUserSignAccountPayable(String ledgerDate, String userName, String[] currentAccountLedger) throws RemoteException;
  public String[][] getCashLedgerByStringField(String ledgerDate, String fieldName, String fieldValue) throws RemoteException;
  public String[][] getCashLedgerByFillDate(String ledgerDate, Timestamp startDate, Timestamp endDate) throws RemoteException;
  public int cashUserSignStockLedgerForStockReturn(String ledgerDate, String userName, String supplierName, String orderId, String remark, boolean isPay) throws RemoteException;
  public String[][] getAccountEntrySubLedgerByLinkSerialId(String ledgerDate, int linkSerialId) throws RemoteException;
  public String[][] getAccountEntryLedgerByStringField(String ledgerDate, String accountName, String fieldName, String fieldValue) throws RemoteException;
  public String[][] getAccountEntryLedgerByOnProcess(String ledgerDate, String accountName, int onProcess) throws RemoteException;
  public String[][] getAccountEntryLedgerByFillDate(String ledgerDate, Timestamp startDate, Timestamp endDate, String accountName) throws RemoteException;
  public int cancelOrRestoreAccountEntryLedger(String ledgerDate, int serialId, int onProcess, String remark) throws RemoteException;
  public int signAccountEntryLedger(String ledgerDate, String fieldName, String userName, int serialId, int onProcess, String remark) throws RemoteException;
  public int updateAccountEntry(String ledgerDate, String[] accountEntryLedger, String[][] accountEntrySubLedger) throws RemoteException;
  public int signStockLedgerAndSubForFinish(String ledgerDate, String fieldName, String userName, String orderId, int onProcess, String remark) throws RemoteException;
  public String[][] getStocktakeQuantityByWarehouse(String ledgerDate, String warehouse, int onProcess) throws RemoteException;
  public String[][] getStockByWarehouse(String ledgerDate, String warehouse, int onProcess) throws RemoteException;
  public String[][] getStockByGoodsBarcode(String ledgerDate, String goodsBarcode, int onProcess) throws RemoteException;
  public String[][] getStockByUsefulLife(String ledgerDate, String usefulLife, int onProcess) throws RemoteException;
  public int createSaleLedgerAndSub(String ledgerDate, String[] saleLedger, String[][] saleSubLedger) throws RemoteException;
  public int updateSaleLedgerAndSub(String ledgerDate, String[] saleLedger, String[][] saleSubLedger) throws RemoteException;
  public int signSaleLedgerAndSub(String ledgerDate, String fieldName, String userName, String saleId, int onProcess, String remark) throws RemoteException;
  public String[][] getSaleSubLedgerBySaleId(String ledgerDate, String saleId) throws RemoteException;
  public String[][] getSaleLedgerByStringField(String ledgerDate, String fieldName, String fieldValue, int saleType) throws RemoteException;
  public String[][] getSaleLedgerByOnProcess(String ledgerDate, int saleType, int onProcess) throws RemoteException;
  public String[][] getSaleLedgerByOrderDate(String ledgerDate, Timestamp startDate, Timestamp endDate, int saleType) throws RemoteException;
  public int counterUserSignSaleLedgerAndSub(String ledgerDate, String userName, String remark, String warehouse) throws RemoteException;
  public int creditUserSignSaleLedgerAndSub(String ledgerDate, String userName, String remark, String warehouse, String saleId, String customerName) throws RemoteException;
  public int cashUserSignAccountReceivable(String ledgerDate, String userName, String[] currentAccountLedger) throws RemoteException;
  public String[][] getStockSaleOutBySaleOrderLink(String ledgerDate, String saleOrderLink, String saleId) throws RemoteException;
  public int counterUserSignSaleReturn(String ledgerDate, String saleId, String userName, String remark, String warehouse, String[][] stockSubLedger) throws RemoteException;
  public int creditUserSignSaleReturn(String ledgerDate, String saleId, String userName, String remark, String warehouse, String customerName, String[][] stockSubLedger, boolean isPay) throws RemoteException;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美电影免费观看高清完整版在线 | 久久―日本道色综合久久| 91在线国产观看| 精品一区二区在线看| 日本成人在线网站| 免费成人美女在线观看.| 麻豆国产精品一区二区三区| 蜜桃一区二区三区在线| 色哟哟一区二区在线观看| 91丨国产丨九色丨pron| 一本一本久久a久久精品综合麻豆| 欧美一级片免费看| 久久老女人爱爱| 日韩精品久久久久久| 奇米在线7777在线精品| 91热门视频在线观看| 国产欧美精品一区二区色综合| 中文字幕成人av| 亚洲精品欧美专区| 亚洲伊人色欲综合网| 亚洲18色成人| 狠狠色丁香久久婷婷综合_中| 国产成人自拍在线| 91色porny在线视频| 欧美极品少妇xxxxⅹ高跟鞋| 国产一区二区三区免费播放| 成人h精品动漫一区二区三区| 91视频你懂的| 最新不卡av在线| 日日夜夜免费精品| 欧美人妇做爰xxxⅹ性高电影| 精品国产一区二区三区久久影院| 国产视频911| 亚洲国产视频一区| 欧美色图天堂网| 亚洲午夜久久久久久久久久久| 成人免费高清视频在线观看| 一本色道**综合亚洲精品蜜桃冫| 欧美激情在线观看视频免费| 国产91在线|亚洲| 91精品国产91久久久久久一区二区| 亚洲一区二区三区视频在线播放| 欧美综合欧美视频| 国产精品日韩成人| 日韩高清在线不卡| 日韩欧美综合一区| 亚洲一区二区三区四区五区黄 | 亚洲国产日韩a在线播放性色| 在线观看视频一区二区欧美日韩| 亚洲精品国产精华液| 欧美系列日韩一区| 蜜桃视频一区二区三区| 国产婷婷色一区二区三区四区 | 国产伦精品一区二区三区免费| 久久久久9999亚洲精品| 不卡视频一二三| 一区二区久久久久久| 国产mv日韩mv欧美| 亚洲精品网站在线观看| 欧美一区二区视频在线观看| 国产精品亚洲专一区二区三区| 7777精品伊人久久久大香线蕉经典版下载 | 欧美日韩视频在线一区二区 | 无码av免费一区二区三区试看 | 欧美三日本三级三级在线播放| 日韩一区精品字幕| 日韩一区二区免费视频| 国产成人免费在线观看不卡| 亚洲欧美日韩一区二区三区在线观看| 国产精品456| 夜夜揉揉日日人人青青一国产精品| 欧美一区二区三区视频免费| 成人在线视频一区二区| 亚洲国产精品天堂| 国产午夜精品理论片a级大结局| 99麻豆久久久国产精品免费| 国产精品免费视频网站| 欧美日韩一级黄| 成人午夜短视频| 日本免费在线视频不卡一不卡二| 中文字幕va一区二区三区| 欧美肥妇bbw| 热久久一区二区| 亚洲色图欧美在线| 久久久精品欧美丰满| 51精品国自产在线| 色哟哟精品一区| 国产99久久久国产精品潘金| 亚洲午夜一区二区| 中文字幕一区日韩精品欧美| 91女厕偷拍女厕偷拍高清| 精品一区二区三区免费观看| 亚洲国产精品久久不卡毛片| 国产精品盗摄一区二区三区| 日本高清无吗v一区| 午夜av一区二区三区| 中文字幕佐山爱一区二区免费| 久久一二三国产| 91丨porny丨蝌蚪视频| 国产精品亚洲第一区在线暖暖韩国| 午夜精品免费在线| 亚洲一二三区在线观看| 亚洲免费在线视频一区 二区| 国产精品色在线观看| 久久久精品综合| 久久久久久久网| 亚洲精品在线免费播放| 欧美一区二区三区的| 91精品国产乱码久久蜜臀| 欧美日韩一区二区在线视频| 在线观看91精品国产入口| 91麻豆精品一区二区三区| 成人国产精品视频| www.亚洲色图.com| 91亚洲精品久久久蜜桃| 95精品视频在线| 91福利小视频| 欧美日韩精品高清| 欧美精品视频www在线观看| 欧美色图免费看| 国产精品久久久久四虎| 中文字幕亚洲不卡| 亚洲精品国产精品乱码不99| 亚洲电影视频在线| 水蜜桃久久夜色精品一区的特点| 日本女优在线视频一区二区| 精品在线亚洲视频| 成人中文字幕电影| 色94色欧美sute亚洲线路一久| 在线精品观看国产| 91麻豆精品国产自产在线观看一区| 欧美一区二区精品在线| 久久人人爽爽爽人久久久| 成人免费在线观看入口| 亚洲午夜久久久久久久久电影网 | 日韩欧美一区二区在线视频| 欧美一区二区视频网站| 久久午夜羞羞影院免费观看| 亚洲国产精品成人久久综合一区| 亚洲色欲色欲www| 午夜视频久久久久久| 激情文学综合插| 99久久99久久综合| 制服丝袜亚洲色图| 国产网红主播福利一区二区| 亚洲成人自拍一区| 国产米奇在线777精品观看| 91免费在线播放| 日韩精品一区国产麻豆| 中文字幕一区日韩精品欧美| 免费视频一区二区| 成人蜜臀av电影| 欧美一级免费观看| 国产精品福利在线播放| 日韩av一区二区三区四区| 成人动漫一区二区| 日韩网站在线看片你懂的| 综合久久久久综合| 精品在线一区二区三区| 在线视频观看一区| 久久精品夜色噜噜亚洲a∨| 亚洲一区二区3| a美女胸又www黄视频久久| 日韩欧美亚洲国产精品字幕久久久 | 美女视频第一区二区三区免费观看网站 | 欧美日韩一区三区四区| 国产清纯在线一区二区www| 亚洲大片一区二区三区| 不卡的av电影| 久久久影院官网| 日韩电影在线看| 欧美性猛片aaaaaaa做受| 亚洲国产成人一区二区三区| 91国偷自产一区二区使用方法| 久久久综合网站| 久久精品国产久精国产| 免费成人在线观看| 欧美性欧美巨大黑白大战| 成人免费小视频| 成人永久免费视频| 国产欧美1区2区3区| 人人狠狠综合久久亚洲| 欧美日韩国产小视频在线观看| 亚洲欧洲av色图| 不卡欧美aaaaa| 欧美激情一区二区三区在线| 日韩国产欧美视频| 欧美在线观看禁18| 亚洲精品久久久蜜桃| 成人精品一区二区三区四区| 精品sm在线观看| 久久99热狠狠色一区二区| 日韩视频一区二区三区在线播放| 亚洲国产精品一区二区www在线 | 奇米影视一区二区三区小说| 欧美日韩一二三区| 亚洲gay无套男同| 欧美久久免费观看| 视频一区视频二区中文| 538prom精品视频线放|