Helius
2021-06-16 5728be2af515b2200e782aa201ca5d4d67d9ea47
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
package com.ibeetl.admin.console.web.dto;
 
import com.ibeetl.admin.core.entity.CoreDict;
 
/**
 * 字典数据导入,参考 dict_mapping.xml
 * @author xiandafu
 *
 */
public class DictExcelImportData extends CoreDict {
    private Integer excelId;
    private Integer parentExcelId;
 
    public Integer getExcelId() {
        return excelId;
    }
 
    public void setExcelId(Integer excelId) {
        this.excelId = excelId;
    }
 
    public Integer getParentExcelId() {
        return parentExcelId;
    }
 
    public void setParentExcelId(Integer parentExcelId) {
        this.parentExcelId = parentExcelId;
    }
    
    
}