刘光辉
昨天 bb638871a7fb692d80f1b7a758f991dc0879002c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package jnpf.dmsService;
 
import jnpf.base.Pagination;
import jnpf.dmsEntity.wenjianbianhao.DmsFlowEventType;
import jnpf.dmsEntity.wenjianbianhao.vo.DmsWenjianBianhaoOptionVO;
import jnpf.dmsEntity.wenjianbianhao.vo.DmsWenjianBianhaoPreviewVO;
import jnpf.dmsEntity.wenjianbianhao.vo.DmsWenjianBianhaoRuleVO;
import jnpf.exception.DataException;
 
import java.util.List;
 
public interface DmsWenjianBianhaoApplicationService {
    List<DmsWenjianBianhaoRuleVO> enabledRules(
            Pagination pagination, String guizeId, String searchValue) throws DataException;
 
    DmsWenjianBianhaoPreviewVO preview(String guizeId) throws DataException;
 
    List<DmsWenjianBianhaoOptionVO> usingNumbers(
            Pagination pagination, String bianhaoId, String searchValue) throws DataException;
 
    void syncApplicationFlow(String flowId, String taskId, Integer flowState,
                             DmsFlowEventType eventType) throws DataException;
 
    void syncNameChangeFlow(String flowId, String taskId, Integer flowState,
                            DmsFlowEventType eventType) throws DataException;
}