chenhj
2026-04-24 8b749305a8e8c3f4bf669f6980edf2bbb7bfa9c7
src/main/java/com/ruoyi/production/mapper/ProductionAccountMapper.java
@@ -1,8 +1,13 @@
package com.ruoyi.production.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.production.bean.dto.UserAccountDto;
import com.ruoyi.production.pojo.ProductionAccount;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
/**
 * <p>
@@ -14,5 +19,8 @@
 */
@Mapper
public interface ProductionAccountMapper extends BaseMapper<ProductionAccount> {
    UserAccountDto selectUserAccount(@Param("userId") Long userId, @Param("date") String date);
    List<Map<String, Object>> selectDailyWagesStats(@Param("startDate") String startDate, @Param("endDate") String endDate);
}