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

正文內(nèi)容

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

2022-09-18 12:27:30 本頁面
 

【正文】 各子模塊功能的描述 車輛管理 車輛管理是由省公司負(fù)責(zé)的,省公司負(fù)責(zé)購買車輛,以及車輛的維護(hù),運(yùn)力調(diào)配等;在該系統(tǒng)中我們只需要把車輛的增、刪、改做完即可;對于貨物的體積如果超過一輛車則可以使用多輛車;每輛車都有狀態(tài)表示;只有空閑時才可以安排。 配送點(diǎn)信息如下: 訂單管理 訂單管理是包括下訂單、訂單的修改、刪除;其中訂單只有在收貨物之前的可以修改;下單的過程一般由用戶或者配送點(diǎn)管理員來完成。 根據(jù)訂單的具體情況由配送點(diǎn)每天生成交接單,并進(jìn)行打印。 報表內(nèi)容如下:報表時間、報表生成時間、配送點(diǎn)名稱、配送貨物總重量、總體積、配送收入 配送點(diǎn): 生成年季月三個報表分別選擇要生成報表的年、季、月,然后點(diǎn)擊生成報表,系統(tǒng)自動生成報表,并呈現(xiàn)在頁面上;點(diǎn)擊導(dǎo)出到 Excel可以把報表導(dǎo)出。 12 設(shè)計思想 系統(tǒng)構(gòu)思 功能簡介(類似需求分析): 客戶端:查詢運(yùn)費(fèi),下訂單和訂單進(jìn)度查詢; 分公司:訂單管理(下訂單,訂單審核,訂單修改,訂單狀態(tài)修改),訂單異常處理(訂單異常處理登記,訂單異常處理查詢),訂單發(fā)貨(待發(fā)訂單查詢,加開班次申請,交接單生成,交接單綁定,緊急訂單提醒,班次查詢),交接單管理(交接單生成,交接單綁定,交接單確認(rèn),交接單修改),訂單收獲(交接單確認(rèn),交接單修改,班次查詢),貨物配送(庫存訂單查詢,訂單確認(rèn)),本地信息設(shè)置(中轉(zhuǎn)路線選擇,配送價格申報); 總公司:配送點(diǎn)管理(添加新配送點(diǎn),審核各配送點(diǎn)申報的配送費(fèi)方案),財務(wù)管理(統(tǒng)計各部門收益,制定和調(diào)整利潤分配方案),信 息查詢(交接單查詢,訂單查詢),線路設(shè)置(建立基本線路,管理線路,提供線路查詢),運(yùn)費(fèi)管理(制定和修改運(yùn)費(fèi)方案,提供運(yùn)費(fèi)查詢),車輛管理(維護(hù)車輛基本信息),班次管理(設(shè)置班次,為配送點(diǎn)提供班次查詢,處理配送點(diǎn)加急班次申請),權(quán)限管理(權(quán)限分配,后臺用戶的管理)。 servlet 技術(shù)用來做邏輯控制,實現(xiàn)業(yè)務(wù)功能。 Route(線路表 ) create table t_route ( id NUMBER(32) not null, routename Varchar2(50) not null, routefrom Varchar2(50) not null, routeto Varchar2(50) not null, constraint PK_T_ROUTE primary key (id) )。 Order(訂單表) create table t_order ( id NUMBER(32) not null, destn VARCHAR2(50), node_id NUMBER(32), accepetdate DATE, user_id NUMBER(32), accepeter VARCHAR2(50), accepeterphonenum VARCHAR2(50), price NUMBER(22,2), scope VARCHAR2(50), senddate VARCHAR2(50), address VARCHAR2(50), VARCHAR2(50), goods_id NUMBER(32), goodsamount NUMBER(20), mateprice NUMBER(22,2), protectprice NUMBER(22,2), sendprice NUMBER(22,2), totalprice NUMBER(22,2), constraint PK_T_ORDER primary key (id) )。 Car(車輛) create table t_car ( id NUMBER(32) not null, carnum VARCHAR2(50), deadweight NUMBER(12,2), volume NUMBER(12,2), state VARCHAR2(50), constraint PK_T_CAR primary key (id) )。 t_employee(員工表) create table t_employee ( id NUMBER(32) not null, name VARCHAR2(50), sex VARCHAR2(50), age VARCHAR2(50), role_id NUMBER(32) not null, node_id NUMBER(32) not null, tel VARCHAR2(50), VARCHAR2(50), constraint PK_T_EMPLOYEE primary key (id) )。 t_sendform(發(fā)貨表) create table t_sendform ( id NUMBER(32) not null, node_id NUMBER(32), formdate DATE, formbirthdate DATE, tatalweight NUMBER(22,2), totalvolume NUMBER(22,2), ine NUMBER(22,2), constraint PK_T_SENDFORM primary key (id) )。 alter table sendnode_price add constraint FK_SENDNODE_REFERENCE_T_SENDNO foreign key (node_id) references t_sendnode (id)。 alter table t_allocatecar add constraint FK_T_ALLOCA_REFERENCE_T_CAR foreign key (car_id) references t_car (id)。 alter table t_associatelist 36 add constraint FK_T_ASSOCI_REFERENCE_T_SENDNO foreign key (nodde_id) references t_sendnode (id)。 alter table t_goods add constraint FK_T_GOODS_REFERENCE_T_GOODST foreign key (type_id) references t_goodstype (id)。 alter table t_order add constraint FK_T_ORDER_REFERENCE_T_SENDNO foreign key (node_id) references t_sendnode (id)。 alter table t_totalrouteform add constraint FK_T_TOTALR_REFERENCE_ROUTE_RE foreign key (route_id) references route_relation (id)。 例子: Factory 工廠類:一個有意義的。 Action 模塊名+ Action:是用來給 servlet 命名的 例子: form 模塊名+ ActionForm:是用來給 servlet 命名的 例子: dao 有意義的名字 +DAO,因為 dao 包是用來定義接口的, 包中定義的每一個接口的抽象方法,都是用來讓 Impl 類來實現(xiàn)的。 alter table t_sendnode add constraint FK_T_SENDNO_REFERENCE_T _USER foreign key (user_id) references t _user (id)。 alter table t_order add constraint FK_T_ORDER_REFERENCE_T_GOODS foreign key (goods_id) references t_goods (id)。 alter table t_employee add constraint FK_T_EMPLOY_REFERENCE_T_SENDNO foreign key (node_id) references t_sendnode (id)。 alter table t_associatelist add constraint FK_T_ASSOCI_REFERENCE_T_ORDER foreign key (order_id) references t_order (id)。 alter table t _user add constraint FK_T _USER_REFERENCE_T_ROLE foreign key (role_id) references t_role (id)。 外鍵 關(guān)系表 表名 外鍵字段 外鍵引用表 外鍵引用表主鍵 route_relation route_id t_route Id route_relation node_id t_sendnode Id sendscope_price node_id t_sendnode Id t _user role_id t_role Id t_allocatecar car_id t_car Id t_goods type_id t_goodstype Id t_goodsstate order_id t_order Id t_sendnode user_id t _user Id t_setouttime car_id t_car Id t_order node_id t_sendnode Id t_order user_id t _user Id t_order goods_id t_goods Id sendnode_price node_id t_sendnode Id t_employee role_id t_role Id t_employee node_id t_sendnode Id t_associatelist car_id t_car Id t_associatelist order_id t_order Id t_associatelist employee_id t_employee Id t_associatelist node_id t_sendnode Id t_totalrouteform route_id t_route Id t_acceptform node_id t_sendnode Id t_sendform node_id t_sendnode Id t_panyreportform node_id t_sendnode Id 35 建立外鍵代碼 alter table route_relation add constraint FK_ROUTE_RE_REFERENCE_T_ROUTE foreign ke
點(diǎn)擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1