PatentCostService.java 601 B

12345678910111213141516171819202122
  1. package com.goafanti.patent.service;
  2. import java.text.ParseException;
  3. import com.goafanti.common.model.PatentCost;
  4. import com.goafanti.core.mybatis.page.Pagination;
  5. import com.goafanti.patent.bo.PatentApplicationFeeBo;
  6. public interface PatentCostService {
  7. int updateByPrimaryKeySelective(PatentCost patentCost);
  8. Pagination<PatentApplicationFeeBo> getApplicationFeeList(String[] patentApplicationDate, String locationProvince,
  9. Integer pNo, Integer pSize) throws ParseException;
  10. PatentCost insert(PatentCost patentCost);
  11. PatentCost selectByPrimaryKey(String cid);
  12. }