zqy
2025-01-14 9d31915e99fcd5e5fc3b9453eb570fc2358e0179
ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/MeetingStatisticController.java
@@ -19,6 +19,7 @@
public class MeetingStatisticController extends BaseController {
    @Autowired
    private MeetingStatisticService meetingStatisticService;
    /**
     * 全部数据
     */
@@ -29,6 +30,14 @@
        return meetingStatisticService.selectDataList(meetingStatistic, pageNum, pageSize);
    }
    /**
     * 根据id,获取会议记录详细信息
     */
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
        return success(meetingStatisticService.getById(id));
    }
    /**
     * 只输出家庭号和创建时间
     */
    @GetMapping("/one")