| | |
| | | package com.vci.ubcs.code.po; |
| | | |
| | | import com.vci.starter.poi.annotation.ExcelColumn; |
| | | |
| | | /** |
| | | * 主题库分类的导入导出对象 |
| | | * @author weidy |
| | |
| | | /** |
| | | * 所在数据行 |
| | | */ |
| | | @ExcelColumn(rowIndexColumn = true,value = "") |
| | | private String rowIndex; |
| | | |
| | | |
| | | /** |
| | | * 分类编号 |
| | | */ |
| | | @ExcelColumn(value="分类编号",nullable = false) |
| | | private String id; |
| | | /** |
| | | * 分类名称 |
| | | */ |
| | | @ExcelColumn(value="分类名称",nullable = false) |
| | | private String name; |
| | | |
| | | /** |
| | | * 描述 |
| | | */ |
| | | @ExcelColumn(value = "描述") |
| | | private String description; |
| | | |
| | | /** |
| | | * 编码规则编号 |
| | | */ |
| | | @ExcelColumn(value = "编码规则编号") |
| | | private String codeRuleId; |
| | | |
| | | /** |
| | | * 业务类型编号 |
| | | */ |
| | | @ExcelColumn(value = "业务类型编号") |
| | | private String btmTypeId; |
| | | |
| | | /** |
| | | * 查重规则编号 |
| | | */ |
| | | @ExcelColumn(value = "查重规则编号") |
| | | private String keyRepeatRuleId; |
| | | |
| | | /** |
| | | * 分类路径 |
| | | */ |
| | | @ExcelColumn(value = "分类路径",nullable = false) |
| | | private String path; |
| | | |
| | | /** |
| | | * 状态文本 |
| | | */ |
| | | @ExcelColumn(value = "状态") |
| | | private String lcStatusText; |
| | | |
| | | /** |