freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

基于java的物流配送管理系統(tǒng)設(shè)計(含源文件-閱讀頁

2024-09-27 12:27本頁面
  

【正文】 絡(luò); c)該軟件系統(tǒng)同其他系統(tǒng)或其他機(jī)構(gòu)的基本的相互來往關(guān)系。配送費(fèi)用 價格由省公司統(tǒng)一維護(hù),配送點(diǎn)無權(quán)修改。 路線管理 路線管理目前我們只做到路線的瀏覽、增加、修改、刪除、配送點(diǎn)循序維護(hù)。 配送點(diǎn)管理 配送點(diǎn)管理是由省公司完成的,有配送點(diǎn)的瀏覽、添加、修改、刪除、查看配送范圍、查看配送價格等。 訂單查詢 每一個配送點(diǎn)的管理人員可以查詢配送點(diǎn)的當(dāng)前訂單情況。 交接單管理 裝貨完成后,配送點(diǎn)管理員(業(yè)務(wù)員)需要生成交接單,根據(jù)目的配送點(diǎn)的數(shù)量生成相應(yīng)的交接單;比如該車貨物需要去五個配送點(diǎn),則需要產(chǎn)生五個交接單。交接單一式三份,每個交接地一張交接單。 省公司 省公司只有收入報表,生成年季月三個報表分別選擇要生成報表的年、季、月,然后點(diǎn)擊生成報表,系統(tǒng)自動生成報表,并呈現(xiàn)在頁面上;點(diǎn)擊導(dǎo)出到 Excel 可以把報表導(dǎo)出。 報表分為收貨報表、發(fā)貨報表、收發(fā)總表。 用戶管理 實(shí)現(xiàn)對用戶的增刪改;數(shù)據(jù)庫中只設(shè)計一張用戶表;系統(tǒng)不采用集成 Windows 驗(yàn)證方式。 13 設(shè)計模式 關(guān)鍵技術(shù) JSPamp。javaBean jsp技術(shù)用于頁面的表現(xiàn),將后臺相應(yīng)的結(jié)果返回給客戶。 javabean 是數(shù)據(jù)封裝類,它以實(shí)例對象的形式作為各層之間數(shù)據(jù)通信的載體,實(shí)際上這些對象也屬于業(yè)務(wù)對象,如 User對象。 29 Role(角色表 ) create table t_role ( id NUMBER(32) not null, rolename VARCHAR2(50) not null, constraint PK_T_ROLE primary key (id) )。 GoodsState(貨物狀態(tài)表 ) create table t_goodsstate ( id NUMBER(32) not null, bagnum VARCHAR2(50), order_id NUMBER(32) not null, nowposition VARCHAR2(50), nextposition VARCHAR2(50), arrivetime DATE, constraint PK_T_GOODSSTATE primary key (id) )。 GoodsType(貨物類別 ) 30 create table t_goodstype ( id NUMBER(32) not null, typename VARCHAR2(50), constraint PK_T_GOODSTYPE primary key (id) )。 SendNode(配送點(diǎn)) create table t_sendnode ( id NUMBER(32) not null, nodename VARCHAR2(50), innerprice NUMBER(12,2), user_id NUMBER(32), username VARCHAR2(50), password VARCHAR2(50), forwordnode VARCHAR2(50), nextnode VARCHAR2(50), nodetype VARCHAR2(50), constraint PK_T_SENDNODE primary key (id) )。 SendScope_Price(配送范圍價格表 ) create table sendscope_price ( id NUMBER(32) not null, node_id NUMBER(32), scopename VARCHAR2(50), fristweightprice NUMBER(12,2), nextweightprice NUMBER(12,2), fristvolumeprice NUMBER(12,2), nextvolumeprice NUMBER(12,2), constraint PK_SENDSCOPE_PRICE primary key (id) )。 AllocateCar(車輛調(diào)配表 ) create table t_allocatecar ( id NUMBER(32) not null, car_id NUMBER(32), nowposition VARCHAR2(50), destn VARCHAR2(50), constraint PK_T_ALLOCATECAR primary key (id) )。 Route_relation(線路關(guān)系表 ) create table route_relation ( id NUMBER(32) not null, node_id NUMBER(32) not null, route_id NUMBER(32) not null, constraint PK_ROUTE_RELATION primary key (id) )。 t_associatelist (交接單表 ) create table t_associatelist ( id NUMBER(32) not null, car_id NUMBER(32), order_id NUMBER(32), employee_id NUMBER(32), nodde_id NUMBER(32), destn VARCHAR2(50), associatedate DATE, constraint PK_T_ASSOCIATELIST primary key (id) )。 t_acceptform (收貨表 ) create table t_acceptform ( id NUMBER(32) not null, node_id NUMBER(32), formdate DATE, formbirthdate DATE, totalweight NUMBER(22,2), totalvolume NUMBER(22,2), ine NUMBER(22,2), constraint PK_T_ACCEPTFORM primary key (id) )。 t_panyreportform (省公司報表 ) create table t_panyreportform ( id NUMBER(32) not null, formdate DATE, formbirthdate DATE, 34 node_id NUMBER(32), totalweighet NUMBER(22,2), totalvolume NUMBER(22,2), totaline NUMBER(22,2), constraint PK_T_COMPANYREPORTFORM primary key (id) )。 alter table route_relation add constraint FK_ROUTE_RE_REFERENCE_T_SENDNO foreign key (node_id) references t_sendnode (id)。 alter table sendscope_price add constraint FK_SENDSCOP_REFERENCE_T_SENDNO foreign key (node_id) references t_sendnode (id)。 alter table t_acceptform add constraint FK_T_ACCEPT_REFERENCE_T_SENDNO foreign key (node_id) references t_sendnode (id)。 alter table t_associatelist add constraint FK_T_ASSOCI_REFERENCE_T_CAR foreign key (car_id) references t_car (id)。 alter table t_associatelist add constraint FK_T_ASSOCI_REFERENCE_T_EMPLOY foreign key (employee_id) references t_employee (id)。 alter table t_panyreportform add constraint FK_T_COMPAN_REFERENCE_T_SENDNO foreign key (node_id) references t_sendnode (id)。 alter table t_employee add constraint FK_T_EMPLOY_REFERENCE_T_ROLE foreign key (role_id) references t_role (id)。 alter table t_goodsstate add constraint FK_T_GOODSS_REFERENCE_T_ORDER foreign key (order_id) references t_order (id)。 alter table t_order add constraint FK_T_ORDER_REFERENCE_T _USER foreign key (user_id) references t _user (id)。 alter table t_sendform add constraint FK_T_SENDFO_REFERENCE_T_SENDNO foreign key (node_id) references t_sendnode (id)。 alter table t_setouttime 37 add constraint FK_T_SETOUT_REFERENCE_T_CAR foreign key (car_id) references t_car (id)。 10 各模塊詳細(xì)設(shè)計 模塊命名規(guī)則 包名 命名規(guī)則 vo 值對象,其中存放的是每個 JavaBean,其中 JavaBean 的命名是和數(shù)據(jù)庫中的表名稱是一一對應(yīng)的。 例子: Impl 有意義的名字 +Impl:這是用來實(shí)現(xiàn)具體的增、刪、改、查的操作的真實(shí)實(shí)現(xiàn)類,不負(fù)責(zé)數(shù)據(jù)庫的關(guān)閉,且直接不會被 servlet 調(diào)用
點(diǎn)擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1