接单详情
This commit is contained in:
parent
6e8fd07a54
commit
82f364a7c5
|
|
@ -101,6 +101,9 @@ public class MaLeaseInfo extends BaseEntity implements Serializable {
|
|||
@ApiModelProperty(value = "接单公司")
|
||||
private String orderCompany;
|
||||
|
||||
@ApiModelProperty(value = "接单公司名称")
|
||||
private String orderCompanyName;
|
||||
|
||||
/**
|
||||
* 接单时间
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -123,6 +123,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
m.lease_end_time as leaseEndTime,
|
||||
m.start_time as startTime,
|
||||
m.end_time as endTime,
|
||||
m.order_time as orderTime,
|
||||
m.order_company as orderCompany,
|
||||
sd2.dept_name as orderCompanyName,
|
||||
m.person as person,
|
||||
m.person_phone as personPhone,
|
||||
m.description as description,
|
||||
|
|
@ -144,6 +147,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
LEFT JOIN base_address b2 on m.city_code = b2.code
|
||||
LEFT JOIN ma_hot_search h ON h.lease_id = m.id
|
||||
LEFT JOIN sys_dept sd on m.publish_company = sd.dept_id
|
||||
LEFT JOIN sys_dept sd2 on m.order_company = sd2.dept_id
|
||||
WHERE 1 = 1
|
||||
<if test="id != null">
|
||||
and m.id = #{id}
|
||||
|
|
|
|||
Loading…
Reference in New Issue