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

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

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

           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>
    ```
相关推荐
Qiuner18 天前
从0到1!萌新跟着操作也能学会的保姆级全栈项目开发实录一:项目初始化配置
vue·springboot·uniapp·ruoyi
罗曼蒂克在消亡1 个月前
github项目学习——ruoyi-vue-pro
github·ruoyi·后端框架
vener_1 个月前
ruoyi-python 若依python版本部署及新增模块
前端·javascript·vue.js·ruoyi
萧仁武1 个月前
【Vue】以RuoYi框架前端为例,ElementUI封装图片上传组件——将图片信息转成base64后提交到后端保存
vue·ruoyi·base64
疯狂的格式化1 个月前
若依 Vue3 前端分离 3.8.8 版实现去除首页,登录后跳转至动态路由的第一个路由的页面
前端·javascript·vue.js·ruoyi
ew452181 个月前
【VUE_ruoyi-vue】基于ruoyi-vue框架实现简单的系统通用文件模块
前端·javascript·vue.js·ruoyi
码农褚1 个月前
uniapp 中集成 axios 封装request,实现若依权限认证和若依 api方法共用
前端·uni-app·ruoyi
叶 落2 个月前
Ruoyi Cloud 本地启动
微服务·部署·ruoyi