GroupInfoExcelDataHeader.java
1.75 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.taover.bazhuayun.analysis.script.goodscollect;
import java.util.List;
public class GroupInfoExcelDataHeader {
public static final String HEADER_GROUP_NAME = "群名称";
public static final String HEADER_ROOW_WXID = "room_wxid";
public static final String HEADER_FILE_PATH = "文件路径";
public static final String HEADER_SENDER_NICKNAME = "发送人昵称";
private Integer groupNameIndex;
private Integer roowWxidIndex;
private Integer fielPathIndex;
private Integer senderNicknameIndex;
public GroupInfoExcelDataHeader(List<Object> data) {
for(int i=0; i<data.size(); ++i) {
Object item = data.get(i);
if(item == null) {
continue;
}
if(HEADER_GROUP_NAME.equals(item.toString())) {
this.groupNameIndex = i;
continue;
}
if(HEADER_FILE_PATH.equals(item.toString())) {
this.fielPathIndex = i;
continue;
}
if(HEADER_ROOW_WXID.equals(item.toString())) {
this.roowWxidIndex = i;
continue;
}
if(HEADER_SENDER_NICKNAME.equals(item.toString())) {
this.senderNicknameIndex = i;
continue;
}
}
}
public Integer getSenderNicknameIndex() {
return senderNicknameIndex;
}
public void setSenderNicknameIndex(Integer senderNicknameIndex) {
this.senderNicknameIndex = senderNicknameIndex;
}
public Integer getGroupNameIndex() {
return groupNameIndex;
}
public void setGroupNameIndex(Integer groupNameIndex) {
this.groupNameIndex = groupNameIndex;
}
public Integer getRoowWxidIndex() {
return roowWxidIndex;
}
public void setRoowWxidIndex(Integer roowWxidIndex) {
this.roowWxidIndex = roowWxidIndex;
}
public Integer getFielPathIndex() {
return fielPathIndex;
}
public void setFielPathIndex(Integer fielPathIndex) {
this.fielPathIndex = fielPathIndex;
}
}