wip: 代码生成临时提交
This commit is contained in:
@@ -11,7 +11,6 @@ import java.time.LocalDateTime;
|
||||
import java.math.BigDecimal;
|
||||
#end
|
||||
|
||||
|
||||
/**
|
||||
* $!{tableComment}分页查询对象
|
||||
*
|
||||
@@ -24,11 +23,14 @@ import java.math.BigDecimal;
|
||||
public class ${entityName}Query extends BasePageQuery {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
#foreach($field in ${fields})
|
||||
#if("$!field.comment" != "")
|
||||
@Schema(description = "${field.comment}")
|
||||
#if($fieldConfigs)
|
||||
#foreach($fieldConfig in ${fieldConfigs})
|
||||
#if($fieldConfig.showInQuery)
|
||||
#if("$!fieldConfig.fieldComment" != "")
|
||||
@Schema(description = "${field.fieldComment}")
|
||||
#end
|
||||
private ${fieldConfig.fieldType} ${fieldConfig.fieldName};
|
||||
#end
|
||||
#end
|
||||
private ${field.propertyType} ${field.propertyName};
|
||||
#end
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user