|
|
|
@ -23,9 +23,11 @@ import java.util.Date;
|
|
|
|
|
@ApiModel(value="查询${entityName}对象", description="${tableVo.ftlDescription}")
|
|
|
|
|
public class Query${entityName}VO implements Serializable{
|
|
|
|
|
<#list originalColumns as po>
|
|
|
|
|
<#if po.fieldName == 'creatorId' || po.fieldName == 'createBy' || po.fieldName == 'createTime' || po.fieldName == 'updaterId' || po.fieldName == 'updateBy' || po.fieldName == 'updateTime' || po.fieldName == 'tenantId'>
|
|
|
|
|
<#else>
|
|
|
|
|
/**${po.fieldComment}*/
|
|
|
|
|
<#if po.fieldName == primaryKeyField>
|
|
|
|
|
<#else>
|
|
|
|
|
<#if po.fieldName == primaryKeyField>
|
|
|
|
|
<#else>
|
|
|
|
|
<#if po.fieldType =='Date'>
|
|
|
|
|
<#if po.fieldDbType =='date'>
|
|
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
|
|
|
@ -44,6 +46,7 @@ public class Query${entityName}VO implements Serializable{
|
|
|
|
|
<#if po.fieldName == 'delFlag'>
|
|
|
|
|
</#if>
|
|
|
|
|
private <#if po.fieldType=='java.sql.Blob'>byte[]<#else>${po.fieldType}</#if> ${po.fieldName};
|
|
|
|
|
</#if>
|
|
|
|
|
</#list>
|
|
|
|
|
@ApiModelProperty(value = "批量选择参数")
|
|
|
|
|
private String ids;
|
|
|
|
|