【若依框架】按时间查询数据的操作

【若依框架】按时间查询数据的操作

若依框架按起止时间查询数据示例:

           Date tempDate = DateUtil.offsetDay(new Date(), -days);
           Map<String, Object> map = new HashMap<>();
           map.put("beginRecordTime", DateUtil.beginOfHour(tempDate));
           map.put("endRecordTime", new Date());
		   daMeter.setParams(map);	
		   List<DaMeter> resultList = daMeterService.selectDaMeterList(daMeter);

mybatis

    <select id="selectDaMeterList" parameterType="DaMeter" resultMap="DaMeterResult">
        <include refid="selectDaMeterVo"/>
        <where>
            <if test="devId != null">
                and dev_id = #{devId}
            </if>
            <if test="params.beginRecordTime != null  and params.endRecordTime != null ">
                and record_time between #{params.beginRecordTime} and #{params.endRecordTime}
            </if>
        </where>
        order by record_time
    </select>
    ```
相关推荐
AIGC方案10 天前
2024 Java若依(RuoYi)框架视频教程(课件+示例代码+视频)
ruoyi·java框架
是颜一哥哥呀17 天前
若依中Feign调用的具体使用(若依微服务版自身已集成openfeign依赖,并在此基础上定义了自己的注解)
微服务·架构·ruoyi
相逢太短,莫等茶凉24 天前
docker学习记录-部署若依springcloud项目
java·spring cloud·docker·ruoyi
涔溪2 个月前
RuoYi排序
前端框架·ruoyi
52 IT2 个月前
解决若依ruoyi项目部署到服务器验证码接口报错的问题
springboot·ruoyi
Qiuner3 个月前
从0到1!萌新跟着操作也能学会的保姆级全栈项目开发实录一:项目初始化配置
vue·springboot·uniapp·ruoyi
罗曼蒂克在消亡3 个月前
github项目学习——ruoyi-vue-pro
github·ruoyi·后端框架
vener_4 个月前
ruoyi-python 若依python版本部署及新增模块
前端·javascript·vue.js·ruoyi
萧仁武4 个月前
【Vue】以RuoYi框架前端为例,ElementUI封装图片上传组件——将图片信息转成base64后提交到后端保存
vue·ruoyi·base64