package com.ruoyi.home.mapper; import com.ruoyi.dto.MapDto; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * 首页统计 Mapper * * @author antigravity */ @Mapper public interface HomeMapper { /** * 查询产品周转天数 * * @return 产品周转天数列表 */ List productTurnoverDays(); }