Commit a2e99d76 by Wangmin

订单详情新增user_id返回

parent 6c156d14
......@@ -71,9 +71,4 @@ public class DbwzOrderItemVo extends OrderCommonVo {
*/
private String postTreatmentCondition;
/**
* 用户ID
*/
private Integer userId;
}
......@@ -80,4 +80,9 @@ public class OrderCommonVo {
*/
private Long euserId;
/**
* 用户ID
*/
private Integer userId;
}
......@@ -43,8 +43,4 @@ public class YypzOrderItemVo extends OrderCommonVo {
*/
private Date visitTime;
/**
* 用户id
*/
private Integer uid;
}
......@@ -83,6 +83,7 @@
total_order.evaluation_content,
total_order.is_satisfaction as evaluation_flag,
dbgh_order.voucher,
total_order.uid as userId,
employees.uid as euserId
from total_order
left join business on total_order.business_id = business.id
......
......@@ -90,6 +90,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
dbmy_order.voucher,
total_order.evaluation_content,
total_order.is_satisfaction as evaluation_flag,
total_order.uid as userId,
employees.uid as euserId
from total_order
left join business on total_order.business_id = business.id
......
......@@ -86,7 +86,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
hospital.name as hospital,
department.title as department,
yypz_order.remark,
total_order.uid as uid,
total_order.uid as userId,
employees.uid as euserId
from total_order
left join business on business.id = total_order.business_id
......
......@@ -72,6 +72,7 @@
hospital.name as hospital,
department.title as department,
zqgh_order.time_of_appointment as visitTime,
total_order.uid as userId,
doctor.name as doctor
from total_order
left join zqgh_order on zqgh_order.id = total_order.id
......
......@@ -90,6 +90,7 @@
zyph_order.voucher,
total_order.evaluation_content,
total_order.is_satisfaction as evaluation_flag,
total_order.uid as userId,
employees.uid as euserId
from total_order
left join business on total_order.business_id = business.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