buhuazhen
2026-04-16 48d1f158e54933a4414b4092f4a0e4d71d7e1632
src/main/java/com/ruoyi/production/mapper/ProductionProductOutputMapper.java
@@ -9,6 +9,7 @@
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
@Mapper
public interface ProductionProductOutputMapper extends BaseMapper<ProductionProductOutput> {
@@ -18,4 +19,8 @@
     * 根据生产主表ID批量删除产出表数据
     */
    int deleteByProductMainIds(@Param("productMainIds") List<Long> productMainIds);
    List<ProductionProductOutputDto> selectOutputStats(@Param("startDate") String startDate, @Param("endDate") String endDate);
    List<Map<String, Object>> selectDailyOutputStats(@Param("startDate") String startDate, @Param("endDate") String endDate);
}