5469884c8183dfeeea211468913faa25973e0765.svn-base 770 B

123456789101112131415161718192021222324
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.TacProvincePlanDict;
  4. import cn.com.goldenwater.dcproj.param.TacProvincePlanDictParam;
  5. import com.github.pagehelper.PageInfo;
  6. import java.util.List;
  7. /**
  8. * @author lune
  9. * @date 2020-5-28
  10. */
  11. public interface TacProvincePlanDictService extends CrudService<TacProvincePlanDict, TacProvincePlanDictParam> {
  12. List<TacProvincePlanDict> findNotAddList(TacProvincePlanDictParam tacProvincePlanDictParam);
  13. int getMaxNextNo(TacProvincePlanDictParam planDictParam);
  14. // ------------------------- 自定方法 -------------------------
  15. String getJcStepId(String orgId, String province);
  16. String getJcStepId(String orgId);
  17. }