| | |
| | | @PreAuthorize("@ss.hasPermi('app:task:list')") |
| | | @GetMapping("/listWithDetail") |
| | | public TableDataInfo userlist(ArdAppTask ardAppTask) { |
| | | startPage(); |
| | | List<ArdAppTask> ardAppTasks = ardAppTaskService.selectArdAppTaskListWithDetail(ardAppTask); |
| | | return getDataTable(ardAppTasks); |
| | | } |
| | |
| | | <if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 --> |
| | | and a.create_time <= to_timestamp(#{params.endTime},'yyyy-MM-DD HH24:MI:ss') |
| | | </if> |
| | | <!-- 数据范围过滤 --> |
| | | ${params.dataScope} |
| | | </where> |
| | | </select> |
| | | <select id="selectArdAppTaskListWithDetailById" parameterType="ArdAppTask" resultMap="ArdAppTaskSubResult"> |