1
2
3
4
5 package gboat2.attachment.business;
6
7 import gboat2.base.core.service.IBaseService;
8 import gboat2.attachment.model.AttachConfig;
9
10 import java.util.List;
11
12
13
14
15
16
17
18
19 public interface IAttachConfigBusiness extends IBaseService {
20
21
22
23
24
25
26 public String[][] getAvailableAttachTypeByCode(String attachCode);
27
28
29
30
31
32
33 public boolean isAttachTypeUsedInAttachment(String attachType);
34
35
36
37
38
39
40
41 public boolean isAttachTypeUsedInConfig(String moduleName, String attachType);
42
43
44
45
46
47
48
49
50 public AttachConfig getAttachConfigBy(String attachCode, String attachType);
51
52
53
54
55
56
57
58
59 public String getAttachConfigIdBy(String attachCode, String attachType);
60
61
62
63
64
65
66 List<AttachConfig> getAvailableAttachTypesByCode(String attachCode);
67 }