Commit 8a07723227806ec05af6c079e2963c04b1a16118

Authored by 房远帅
2 parents f862e200 86fa18b1

Merge branch 'master_after20' into master_cj_zq

... ... @@ -11,6 +11,7 @@
11 11 <result column="workshop_name" property="workshopName"/>
12 12 <result column="shipments_date" property="shipmentsDate"/>
13 13 <result column="dept_id" property="deptId"/>
  14 + <result column="region" property="region"/>
14 15 <result column="delivery_type" property="deliveryType"/>
15 16 <result column="destination" property="destination"/>
16 17 <result column="status" property="status"/>
... ... @@ -30,6 +31,7 @@
30 31 w.name AS workshop_name,
31 32 tb.shipments_date,
32 33 tb.dept_id,
  34 + tb.region,
33 35 tb.delivery_type,
34 36 tb.destination,
35 37 tb.status,
... ... @@ -81,6 +83,7 @@
81 83 workshop_id,
82 84 shipments_date,
83 85 dept_id,
  86 + region,
84 87 delivery_type,
85 88 destination,
86 89 payment_type,
... ... @@ -96,6 +99,7 @@
96 99 #{item.workshopId},
97 100 #{item.shipmentsDate},
98 101 #{item.deptId},
  102 + #{item.region},
99 103 #{item.deliveryType},
100 104 #{item.destination},
101 105 #{item.paymentType},
... ...