package com.sercurityControl.decision.mapper; import com.sercurityControl.decision.domain.Pie; import com.sercurityControl.decision.domain.SeriousPeccancy; import com.sercurityControl.decision.domain.vo.QueryVo; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface PeccancyMapper { List getPeccancyProject(); List getPeccancyReport(); List getPeccancTeam(); List getReformPercent(); List getReformList(); List getSeriousPeccancy(QueryVo queryVo); List getRiskPeccancyNum(); List getRiskReformPercent(); }