| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | #foreach ($import in $importList) |
| | | import ${import}; |
| | | #if($table.crud) |
| | | import com.ruoyi.framework.web.domain.BaseEntity; |
| | | #elseif($table.tree) |
| | | import com.ruoyi.framework.web.domain.TreeEntity; |
| | | #end |
| | | |
| | | /** |
| | | * ${functionName}对象 ${tableName} |
| | | * |
| | | * |
| | | * @author ${author} |
| | | * @date ${datetime} |
| | | */ |
| | | #if($table.crud) |
| | | #set($Entity="BaseEntity") |
| | | #elseif($table.tree) |
| | | #set($Entity="TreeEntity") |
| | | #end |
| | | @Data |
| | | @ToString |
| | | @EqualsAndHashCode |