File tree Expand file tree Collapse file tree 4 files changed +20
-4
lines changed
continew-plugin/continew-plugin-generator/src/main/resources/templates/backend Expand file tree Collapse file tree 4 files changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,11 @@ import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
88import com.alibaba.excel.annotation.ExcelProperty;
99
1010import top.continew.admin.common.model.resp.BaseDetailResp;
11-
11+ <#if imports?? >
12+ <#list imports as className >
13+ import ${className} ;
14+ </#list >
15+ </#if >
1216import java.io.Serial;
1317<#if hasTimeField >
1418import java.time.*;
Original file line number Diff line number Diff line change @@ -6,7 +6,11 @@ import io.swagger.v3.oas.annotations.media.Schema;
66
77import top.continew.starter.data.core.annotation.Query;
88import top.continew.starter.data.core.enums.QueryType;
9-
9+ <#if imports?? >
10+ <#list imports as className >
11+ import ${className} ;
12+ </#list >
13+ </#if >
1014import java.io.Serial;
1115import java.io.Serializable;
1216<#if hasTimeField >
Original file line number Diff line number Diff line change @@ -9,7 +9,11 @@ import lombok.Data;
99import io.swagger.v3.oas.annotations.media.Schema;
1010
1111import org.hibernate.validator.constraints.Length;
12-
12+ <#if imports?? >
13+ <#list imports as className >
14+ import ${className} ;
15+ </#list >
16+ </#if >
1317import java.io.Serial;
1418import java.io.Serializable;
1519<#if hasTimeField >
Original file line number Diff line number Diff line change @@ -5,7 +5,11 @@ import lombok.Data;
55import io.swagger.v3.oas.annotations.media.Schema;
66
77import top.continew.admin.common.model.resp.BaseResp;
8-
8+ <#if imports?? >
9+ <#list imports as className >
10+ import ${className} ;
11+ </#list >
12+ </#if >
913import java.io.Serial;
1014<#if hasTimeField >
1115import java.time.*;
You can’t perform that action at this time.
0 commit comments