ICodeRuleService.java 681 B

12345678910111213141516171819202122232425262728
  1. package com.xjrsoft.module.system.service;
  2. import com.github.yulichang.base.MPJBaseService;
  3. import com.xjrsoft.common.page.PageInput;
  4. import com.xjrsoft.common.page.PageOutput;
  5. import com.xjrsoft.module.system.entity.CodeRule;
  6. import com.xjrsoft.module.system.vo.CodeRuleVo;
  7. import java.util.List;
  8. /**
  9. * <p>
  10. * 编号规则表 服务类
  11. * </p>
  12. *
  13. * @author zlf
  14. * @since 2022-06-23
  15. */
  16. public interface ICodeRuleService extends MPJBaseService<CodeRule> {
  17. PageOutput<CodeRuleVo> getCodeRulePageList(PageInput dto);
  18. String genEncode(String encode);
  19. boolean useEncode(String encode);
  20. boolean useEncode(List<String> encodeList);
  21. }