package com.thhy.materials.modules.biz.concret.service; import com.thhy.general.common.BasicResult; import java.util.Map; public interface TSteelNeedYearService { BasicResult needYearInsert(Map values); BasicResult needYearList(Map values); BasicResult needYearDel(String steelNeedId); BasicResult needYearInfo(String steelNeedId); BasicResult needYearUpdate(Map values); }