mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-09 07:42:43 +08:00
27 lines
924 B
Plaintext
27 lines
924 B
Plaintext
![]() |
#set($name = "${context.className.substring(0,1).toLowerCase()}${context.className.substring(1)}")
|
||
|
#set($pKeyName =${context.pKeyName})
|
||
|
|
||
|
#set($peimaryKeyName = "${pKeyName.substring(0,1).toUpperCase()}${pKeyName.substring(1)}")
|
||
|
#set($peimaryKeyname = "${pKeyName.substring(0,1).toLowerCase()}${pKeyName.substring(1)}")
|
||
|
|
||
|
package ${context.package}.model.$!{name.toLowerCase()};
|
||
|
|
||
|
import lombok.Data;
|
||
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||
|
import com.alibaba.fastjson.annotation.JSONField;
|
||
|
/**
|
||
|
*
|
||
|
* ${context.genInfo.description}
|
||
|
* @版本: ${context.genInfo.version}
|
||
|
* @版权: ${context.genInfo.copyright}
|
||
|
* @作者: ${context.genInfo.createUser}
|
||
|
* @日期: ${context.genInfo.createDate}
|
||
|
*/
|
||
|
@Data
|
||
|
public class $!{context.className}ExcelErrorVO extends $!{context.className}ExcelVO{
|
||
|
|
||
|
@Excel(name = "异常原因",orderNum = "-999")
|
||
|
@JSONField(name = "errorsInfo")
|
||
|
private String errorsInfo;
|
||
|
}
|