mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-04 14:21:59 +08:00
22 lines
775 B
Plaintext
22 lines
775 B
Plaintext
![]() |
package ${basePackage}.${table.moduleName}.controller.${table.businessName}.vo;
|
||
|
|
||
|
import lombok.*;
|
||
|
import java.util.*;
|
||
|
import io.swagger.annotations.*;
|
||
|
import javax.validation.constraints.*;
|
||
|
|
||
|
@ApiModel("${table.classComment}更新 Request VO")
|
||
|
@Data
|
||
|
@EqualsAndHashCode(callSuper = true)
|
||
|
@ToString(callSuper = true)
|
||
|
public class ${table.className}UpdateReqVO extends ${table.className}BaseVO {
|
||
|
|
||
|
#foreach ($column in $columns)
|
||
|
#if (${column.updateOperation} && (!${column.createOperation} || !${column.listOperationResult}))##不是通用字段
|
||
|
@ApiModelProperty(value = "${column.columnComment}"#if (!${column.nullable}), required = true#end#if ("$!column.example" != ""), example = "${column.example}"#end)
|
||
|
private ${column.javaType} ${column.javaField};
|
||
|
|
||
|
#end
|
||
|
#end
|
||
|
}
|