package com.qianwen.core.sequence.sequence; import com.qianwen.core.sequence.exception.SeqException; public interface Sequence { long nextValue() throws SeqException; String nextNo() throws SeqException; }