| | |
| | | |
| | | <select id="selectOwnerPage" resultType="org.springblade.modules.ownerFeed.vo.OwnerVO"> |
| | | select * from owner_feedback |
| | | where 1=1 |
| | | <if test="owner.company!=null and owner.company!=''"> |
| | | and company like concat('%',#{owner.company},'%') |
| | | </if> |
| | | |
| | | <if test="owner.owner!=null and owner.owner!=''"> |
| | | and owner like concat('%',#{owner.owner},'%') |
| | | </if> |
| | | |
| | | <if test="owner.startTime!=null and owner.startTime!=''"> |
| | | and feedback_time>=#{owner.startTime} |
| | | </if> |
| | | |
| | | <if test="owner.endTime!=null and owner.endTime!=''"> |
| | | and feedback_time<=#{owner.endTime} |
| | | </if> |
| | | |
| | | </select> |
| | | </mapper> |