Commit 2aba02fc by Wangmin

bugfix - 查询订单详情中添加emUserId字段

parent bd5e7efe
......@@ -73,6 +73,6 @@ public class OrderCommonVo {
/**
* 接单人员ID
*/
private Long emUserId;
private Long euserId;
}
......@@ -82,7 +82,7 @@
total_order.evaluation_content,
total_order.is_satisfaction as evaluation_flag,
dbgh_order.voucher,
employees.uid as emUserId
employees.uid as euserId
from total_order
left join business on total_order.business_id = business.id
left join employees on employees.id = total_order.em_id
......
......@@ -89,7 +89,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
dbmy_order.voucher,
total_order.evaluation_content,
total_order.is_satisfaction as evaluation_flag,
employees.uid as emUserId
employees.uid as euserId
from total_order
left join business on total_order.business_id = business.id
left join employees on total_order.em_id = employees.id
......
......@@ -93,7 +93,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
total_order.uid as userId,
dbwz_order.voucher,
dbwz_order.indications as doctor,
employees.uid as emUserId
employees.uid as euserId
from total_order
left join business on total_order.business_id = business.id
left join dbwz_order on dbwz_order.order_id = total_order.id
......
......@@ -86,7 +86,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
department.title as department,
yypz_order.remark,
total_order.uid as uid,
employees.uid as emUserId
employees.uid as euserId
from total_order
left join business on business.id = total_order.business_id
left join yypz_order on yypz_order.order_id = total_order.id
......
......@@ -89,7 +89,7 @@
zyph_order.voucher,
total_order.evaluation_content,
total_order.is_satisfaction as evaluation_flag,
employees.uid as emUserId
employees.uid as euserId
from total_order
left join business on total_order.business_id = business.id
left join zyph_order on zyph_order.order_id = total_order.id
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment