eight
2024-11-12 343d897f00966d40f7eaa1cdfd257f63abd2996a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package cn.lihu.jh.module.ecg.dal.mysql.devrent;
 
import java.util.*;
 
import cn.lihu.jh.framework.common.pojo.PageResult;
import cn.lihu.jh.framework.mybatis.core.query.LambdaQueryWrapperX;
import cn.lihu.jh.framework.mybatis.core.mapper.BaseMapperX;
import cn.lihu.jh.module.ecg.dal.dataobject.devrent.DevRentDO;
import org.apache.ibatis.annotations.Mapper;
import cn.lihu.jh.module.ecg.controller.admin.devrent.vo.*;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
 
/**
 * 装机拆机 Mapper
 *
 * @author 芋道源码
 */
@Mapper
public interface DevRentMapper extends BaseMapperX<DevRentDO> {
 
    default PageResult<DevRentDO> selectPage(DevRentPageReqVO reqVO) {
        return selectPage(reqVO, new LambdaQueryWrapperX<DevRentDO>()
                .eqIfPresent(DevRentDO::getDevId, reqVO.getDevId())
                .eqIfPresent(DevRentDO::getPatId, reqVO.getPatId())
                .likeIfPresent(DevRentDO::getPatName, reqVO.getPatName())
                .betweenIfPresent(DevRentDO::getRentTime, reqVO.getRentTime())
                .betweenIfPresent(DevRentDO::getReturnTime, reqVO.getReturnTime())
                .eqIfPresent(DevRentDO::getInterference, reqVO.getInterference())
                .eqIfPresent(DevRentDO::getBaseline, reqVO.getBaseline())
                .eqIfPresent(DevRentDO::getDetachment, reqVO.getDetachment())
                .eqIfPresent(DevRentDO::getRemark, reqVO.getRemark())
                .betweenIfPresent(DevRentDO::getCreateTime, reqVO.getCreateTime())
                .orderByDesc(DevRentDO::getId));
    }
 
    @Select("<script> " +
            "SELECT * FROM lihu.dev_rent " +
            "<where> " +
            "  <if test='stateList != null'> " +
            "    and state in ( " +
            "      <foreach collection='stateList' separator=',' item='state'> " +
            "        #{state} " +
            "      </foreach> ) " +
            "  </if> " +
            "  <if test=\"devId != null and devId != ''\"> " +
            "    and dev_id = #{devId} " +
            "  </if> " +
            "  <if test=\"patId != null and patId != ''\"> " +
            "    and pat_id = #{patId} " +
            "  </if> " +
            "</where> " +
            "order by create_time desc " +
            "limit 1 " +
            "</script>")
    DevRentDO getRentByState(DevRentSearchReqVO reqVO );
 
    @Select("select * from lihu.dev_rent where state=#{state} and pat_id=#{patId} and check_type=#{checkType} and to_days(create_time)=to_days(now())")
    List<DevRentDO> selectByPatAndChecktypeAndState(@Param("patId") String patId, @Param("checkType") Integer checkType, @Param("state") Integer state);
 
    @Select("<script>" +
            "SELECT paid FROM lihu.dev_rent " +
            "where id in (" +
            " <foreach collection='rentIdList' separator=',' item='rentId'>" +
            "  #{rentId} " +
            " </foreach> )" +
            "</script>")
    List<Integer> getPaidInfo(@Param("rentIdList")List<Long> rentIdList);
 
}