mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-19 05:25:07 +08:00
21 lines
726 B
Plaintext
21 lines
726 B
Plaintext
![]() |
package ${basePackage}.${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
|
||
|
}
|