package com.vci.po;
|
|
import com.vci.starter.poi.annotation.ExcelColumn;
|
import com.vci.starter.web.pagemodel.BaseModelVO;
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
|
/**
|
* 业务类型导入对象
|
* @author yuxc
|
* @date 2024/7/30 16:27
|
*/
|
@Data
|
@AllArgsConstructor
|
@NoArgsConstructor
|
public class OsBtmTypePO extends BaseModelVO {
|
|
/**
|
* 禁止修改这个值
|
*/
|
private static final long serialVersionUID = -2239512786206928201L;
|
|
/**
|
* 所在数据行
|
*/
|
@ExcelColumn(rowIndexColumn = true,value = "")
|
private String rowIndex;
|
|
/**
|
* 名称
|
*/
|
@ExcelColumn(value="名称",nullable = false)
|
private String name;
|
|
/**
|
* 标签
|
*/
|
@ExcelColumn(value="标签")
|
private String lable;
|
|
/**
|
* 描述
|
*/
|
@ExcelColumn(value="描述")
|
private String description;
|
|
/**
|
* 继承自
|
*/
|
@ExcelColumn(value="继承自")
|
private String fName;
|
|
/**
|
* 实现类
|
*/
|
@ExcelColumn(value="实现类")
|
private String implClass;
|
|
/**
|
* 版本规则
|
*/
|
@ExcelColumn(value="版本规则")
|
private short revLevel;
|
|
/**
|
* 版本号规则
|
*/
|
@ExcelColumn(value="版本号规则")
|
private String revRuleName;
|
|
/**
|
* 是否手工输入
|
*/
|
@ExcelColumn(value="是否手工输入")
|
private String revInput;
|
|
/**
|
* 分隔符
|
*/
|
@ExcelColumn(value="分隔符")
|
private String delimiter;
|
|
/**
|
* 版次号规则
|
*/
|
@ExcelColumn(value="版次号规则")
|
private short verRuleName;
|
|
/**
|
* 图片名称
|
*/
|
private String imageName;
|
|
/**
|
* btmItemsTo
|
*/
|
@ExcelColumn(value="生命周期")
|
private String lifeCycle;
|
|
/**
|
* 备选生命周期列表
|
*/
|
@ExcelColumn(value="备选生命周期列表",nullable = false)
|
private String lifeCycles;
|
|
/**
|
* 属性列表
|
*/
|
@ExcelColumn(value="属性列表")
|
private String apNameArray;
|
|
}
|