|
|
@ -41,7 +41,7 @@ |
|
|
|
|
|
|
|
|
|
|
|
<select id="pageListOwn" resultType="com.logpm.aftersales.entity.AftersalesCustomerMallEntity"> |
|
|
|
<select id="pageListOwn" resultType="com.logpm.aftersales.entity.AftersalesCustomerMallEntity"> |
|
|
|
|
|
|
|
|
|
|
|
select * from logpm_aftersales_customer_mall |
|
|
|
select customer_service_id,customer_service_name,client_id,client_name,types_of,conditions from logpm_aftersales_customer_mall |
|
|
|
<where> |
|
|
|
<where> |
|
|
|
is_deleted = 0 and types_of = #{param.typesOf} |
|
|
|
is_deleted = 0 and types_of = #{param.typesOf} |
|
|
|
<if test="param.customerServiceId != null and param.customerServiceId != ''">and customer_service_id = #{param.customerServiceId}</if> |
|
|
|
<if test="param.customerServiceId != null and param.customerServiceId != ''">and customer_service_id = #{param.customerServiceId}</if> |
|
|
@ -49,4 +49,11 @@ |
|
|
|
<if test="param.createTime != null and param.createTime != '' ">and date_format(from_unixtime(create_time ),'%Y-%m-%d') = date_format(#{createTime },'%Y-%m-%d') </if> |
|
|
|
<if test="param.createTime != null and param.createTime != '' ">and date_format(from_unixtime(create_time ),'%Y-%m-%d') = date_format(#{createTime },'%Y-%m-%d') </if> |
|
|
|
</where> |
|
|
|
</where> |
|
|
|
</select> |
|
|
|
</select> |
|
|
|
|
|
|
|
<select id="getByClientId" resultType="com.logpm.aftersales.entity.AftersalesCustomerMallEntity"> |
|
|
|
|
|
|
|
select customer_service_id,customer_service_name,client_id,client_name,types_of,conditions |
|
|
|
|
|
|
|
from logpm_aftersales_customer_mall |
|
|
|
|
|
|
|
where client_id = #{clientId} |
|
|
|
|
|
|
|
and is_deleted = 0 |
|
|
|
|
|
|
|
order by create_time ASC |
|
|
|
|
|
|
|
</select> |
|
|
|
</mapper> |
|
|
|
</mapper> |
|
|
|