结算记录优化

This commit is contained in:
liang.chao 2024-10-15 13:41:31 +08:00
parent 440a6d5935
commit 1581d47cc9
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import com.bonus.sgzb.material.domain.CalMonthlyBean;
import com.bonus.sgzb.material.domain.ProjectMonthCosts; import com.bonus.sgzb.material.domain.ProjectMonthCosts;
import com.bonus.sgzb.material.domain.ProjectMonthDetail; import com.bonus.sgzb.material.domain.ProjectMonthDetail;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List; import java.util.List;
@ -46,5 +47,5 @@ public interface CalMonthlyMapper {
List<String> selectIdByProjectIdAndMonth(ProjectMonthCosts projectMonthCosts); List<String> selectIdByProjectIdAndMonth(ProjectMonthCosts projectMonthCosts);
void deleteDetailsByProMonthCostId(String proMonthCostId); void deleteDetailsByProMonthCostId(@Param("proMonthCostId") String proMonthCostId);
} }