65 lines
1.8 KiB
Plaintext
65 lines
1.8 KiB
Plaintext
package ${packageName}.entity;
|
||
|
||
#foreach ($import in $importList)
|
||
import ${import};
|
||
#end
|
||
import com.baomidou.mybatisplus.annotation.TableName;
|
||
import lombok.Data;
|
||
import lombok.EqualsAndHashCode;
|
||
import lombok.experimental.Accessors;
|
||
|
||
import java.util.Date;
|
||
#if($table.crud || $table.sub)
|
||
import com.starry.common.domain.BaseEntity;
|
||
#elseif($table.tree)
|
||
import com.starry.common.domain.TreeEntity;
|
||
#end
|
||
|
||
/**
|
||
* ${functionName}对象 ${tableName}
|
||
*
|
||
* @author ${author}
|
||
* @since ${datetime}
|
||
*/
|
||
#if($table.crud || $table.sub)
|
||
#set($Entity="BasePageEntity")
|
||
#elseif($table.tree)
|
||
#set($Entity="TreeEntity")
|
||
#end
|
||
@Data
|
||
@EqualsAndHashCode(callSuper = false)
|
||
public class ${ClassName} extends ${Entity}{
|
||
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
#foreach ($column in $columns)
|
||
#if(!$table.isSuperColumn($column.javaField))
|
||
/** $column.columnComment */
|
||
#if($column.list)
|
||
#set($parentheseIndex=$column.columnComment.indexOf("("))
|
||
#if($parentheseIndex != -1)
|
||
#set($comment=$column.columnComment.substring(0, $parentheseIndex))
|
||
#else
|
||
#set($comment=$column.columnComment)
|
||
#end
|
||
#if($parentheseIndex != -1)
|
||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||
#elseif($column.javaType == 'Date')
|
||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||
@Excel(name = "${comment}", width = 30, dateFormat = "yyyy-MM-dd")
|
||
#else
|
||
@Excel(name = "${comment}")
|
||
#end
|
||
#end
|
||
private $column.javaType $column.javaField;
|
||
|
||
#end
|
||
#end
|
||
#if($table.sub)
|
||
/** $table.subTable.functionName信息 */
|
||
private List<${subClassName}> ${subclassName}List;
|
||
|
||
#end
|
||
|
||
}
|