package com.goafanti.patent.service; import java.text.ParseException; import com.goafanti.common.model.PatentCost; import com.goafanti.core.mybatis.page.Pagination; import com.goafanti.patent.bo.PatentApplicationFeeBo; public interface PatentCostService { int updateByPrimaryKeySelective(PatentCost patentCost); Pagination getApplicationFeeList(String[] patentApplicationDate, String locationProvince, Integer pNo, Integer pSize) throws ParseException; PatentCost insert(PatentCost patentCost); PatentCost selectByPrimaryKey(String cid); }