zxl
3 天以前 3b0516a2959e25576e4f3fda697a3b025d06c8c9
ycl-server/src/main/java/com/ycl/platform/mapper/CheckScoreMapper.java
@@ -5,6 +5,7 @@
import com.ycl.platform.domain.dto.CheckScoreDTO;
import com.ycl.platform.domain.dto.ScoreIndexDTO;
import com.ycl.platform.domain.entity.CheckScore;
import com.ycl.platform.domain.query.DashboardQuery;
import enumeration.OperationType;
import java.util.Date;
@@ -13,7 +14,7 @@
/**
 * 考核积分明细Mapper接口
 *
 *
 * @author ruoyi
 * @date 2024-04-22
 */
@@ -21,7 +22,7 @@
{
    /**
     * 查询考核积分明细
     *
     *
     * @param id 考核积分明细主键
     * @return 考核积分明细
     */
@@ -29,7 +30,7 @@
    /**
     * 查询考核积分明细列表
     *
     *
     * @param checkScore 考核积分明细
     * @return 考核积分明细集合
     */
@@ -37,7 +38,7 @@
    /**
     * 新增考核积分明细
     *
     *
     * @param checkScore 考核积分明细
     * @return 结果
     */
@@ -45,7 +46,7 @@
    /**
     * 修改考核积分明细
     *
     *
     * @param checkScore 考核积分明细
     * @return 结果
     */
@@ -53,7 +54,7 @@
    /**
     * 删除考核积分明细
     *
     *
     * @param id 考核积分明细主键
     * @return 结果
     */
@@ -61,7 +62,7 @@
    /**
     * 批量删除考核积分明细
     *
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
@@ -80,7 +81,7 @@
     * 首页考核预警
     * @return 数据
     */
    List<Map<String, Object>> home();
    List<Map<String, Object>> home(Date startTime,Date endTime);
    /**
     * 首页核算
@@ -90,4 +91,11 @@
     * @return 数据
     */
    List<Map<String, Object>> calculate(Date startDate, Date endDate, String category);
    CheckScore getLast(CheckScore checkScore);
    List<CheckScore> dashboard(DashboardQuery dashboardQuery);
    List<CheckScore> selectToday(String day);
}