/* * Copyright (c) 2018-2025, lengleng All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * Neither the name of the yifu4cloud.com developer nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * Author: lengleng (wangiegie@gmail.com) */ #set($excludeColumns = ["create_time","update_time","create_by","update_by"]) package ${package}.${moduleName}.vo; import com.alibaba.excel.annotation.ExcelProperty; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import lombok.EqualsAndHashCode; import com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute; import org.hibernate.validator.constraints.Length; import javax.validation.constraints.NotBlank; #if(${hasBigDecimal}) import java.math.BigDecimal; #end /** * ${comments} * * @author ${author} * @date ${datetime} */ @Data public class ${className}Vo extends RowIndex implements Serializable{ #foreach ($column in $columns) ## 排除部分字段 #if(!$excludeColumns.contains($column.columnName)) /** * $column.comments */ #if($column.columnName == $pk.columnName) @TableId(type = IdType.ASSIGN_ID) #end #end #if($column.nullable) @NotBlank(message = "$column.comments 不能为空") #end #if($column.maxLength && $column.attrType =='String') @Length(max=$column.maxLength,message = "$column.comments 不能超过$column.maxLength 个字符") #end @ExcelAttribute(name = "$column.comments"#if($column.nullable), isNotEmpty = true,errorInfo = "$column.comments 不能为空" #end #if($column.attrType =='LocalDate' || $column.attrType =='LocalDateTime') ,isDate = true #end #if($column.maxLength), maxLength = $column.maxLength #end) @Schema(description ="$column.comments"#if($column.hidden),hidden=$column.hidden#end) @ExcelProperty("$column.comments") #if($column.attrType =='LocalDate' || $column.attrType =='LocalDateTime' || $column.attrType =='Date') private Date $column.lowerAttrName; #else private $column.attrType $column.lowerAttrName; #end #end }