mirror of https://github.com/alibaba/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
545 B
32 lines
545 B
4 years ago
|
package com.alibaba.excel.converters;
|
||
|
|
||
|
import com.alibaba.excel.context.WriteContext;
|
||
|
import com.alibaba.excel.metadata.property.ExcelContentProperty;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* write converter context
|
||
|
*
|
||
|
* @author Jiaju Zhuang
|
||
|
*/
|
||
|
@Data
|
||
|
@AllArgsConstructor
|
||
|
public class WriteConverterContext<T> {
|
||
|
|
||
|
/**
|
||
|
* Java Data.NotNull.
|
||
|
*/
|
||
|
private T value;
|
||
|
|
||
|
/**
|
||
|
* Content property.Nullable.
|
||
|
*/
|
||
|
private ExcelContentProperty contentProperty;
|
||
|
|
||
|
/**
|
||
|
* write context
|
||
|
*/
|
||
|
private WriteContext writeContext;
|
||
|
}
|