21 lines
734 B
Plaintext
21 lines
734 B
Plaintext
package ${basePackage}.modules.${table.moduleName}.controller.${table.businessName}.vo;
|
|
|
|
import lombok.*;
|
|
import java.util.*;
|
|
import io.swagger.annotations.*;
|
|
|
|
@ApiModel("${table.classComment} Response VO")
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@ToString(callSuper = true)
|
|
public class ${table.className}RespVO extends ${table.className}BaseVO {
|
|
|
|
#foreach ($column in $columns)
|
|
#if (${column.listOperationResult} && (!${column.createOperation} || !${column.updateOperation}))##不是通用字段
|
|
@ApiModelProperty(value = "${column.columnComment}"#if (!${column.nullable}), required = true#end#if ("$!column.example" != ""), example = "${column.example}"#end)
|
|
private ${column.javaType} ${column.javaField};
|
|
|
|
#end
|
|
#end
|
|
}
|