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

正文內(nèi)容

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

2024-09-11 12:27本頁面
  

【正文】 例子: Factory 工廠類:一個有意義的。 Action 模塊名+ Action:是用來給 servlet 命名的 例子: form 模塊名+ ActionForm:是用來給 servlet 命名的 例子: dao 有意義的名字 +DAO,因為 dao 包是用來定義接口的, 包中定義的每一個接口的抽象方法,都是用來讓 Impl 類來實現(xiàn)的。 alter table t_totalrouteform add constraint FK_T_TOTALR_REFERENCE_ROUTE_RE foreign key (route_id) references route_relation (id)。 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_SENDNO foreign key (node_id) references t_sendnode (id)。 alter table t_order add constraint FK_T_ORDER_REFERENCE_T_GOODS foreign key (goods_id) references t_goods (id)。 alter table t_goods add constraint FK_T_GOODS_REFERENCE_T_GOODST foreign key (type_id) references t_goodstype (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 36 add constraint FK_T_ASSOCI_REFERENCE_T_SENDNO foreign key (nodde_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_allocatecar add constraint FK_T_ALLOCA_REFERENCE_T_CAR foreign key (car_id) references t_car (id)。 alter table t _user add constraint FK_T _USER_REFERENCE_T_ROLE foreign key (role_id) references t_role (id)。 alter table sendnode_price add constraint FK_SENDNODE_REFERENCE_T_SENDNO foreign key (node_id) references t_sendnode (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 key (route_id) references t_route (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) )。 33 t_totalrouteform(線路總表) create table t_totalrouteform ( id NUMBER(32) not null, routenum VARCHAR2(50), route_id NUMBER(32), startnode VARCHAR2(50), acrossnoade VARCHAR2(50), endpoint VARCHAR2(50), constraint PK_T_TOTALROUTEFORM 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) )。 32 Setouttime(發(fā)車時間表) create table t_setouttime ( id NUMBER(32) not null, car_id NUMBER(32) not null, setouttime DATE, constraint PK_T_SETOUTTIME 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) )。 31 SendNode_Price(配送點(diǎn)價格表 ) create table sendnode_price ( id NUMBER(32) not null, node_id NUMBER(32), scopename VARCHAR2(50), fristweightprice NUMBER(22,2), nextweightprice NUMBER(22,2), fristvolumeprice NUMBER(22,2), nextvolumeprice NUMBER(22,2), constraint PK_SENDSCOPE_PRICE 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) )。 Goods(貨物表) create table t_goods ( id NUMBER(32) not null,
點(diǎn)擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1