| | |
| | | import com.dy.common.mybatis.envm.Deleted; |
| | | import com.dy.common.mybatis.envm.Disabled; |
| | | import com.dy.common.po.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import jakarta.validation.constraints.Max; |
| | | import jakarta.validation.constraints.Min; |
| | |
| | | * 种植面积 |
| | | */ |
| | | @Schema(description = "农户种植面积", requiredMode = Schema.RequiredMode.NOT_REQUIRED) |
| | | @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) |
| | | public Double area; |
| | | |
| | | /** |
| | | * 县名称+镇名称+村名称,不可填写,自动生成 |
| | | */ |
| | | //@Schema(description = "县名称+镇名称+村名称") |
| | | @Schema(description = "县名称+镇名称+村名称,form表单中不存在,只在查询显示中有效", requiredMode = Schema.RequiredMode.NOT_REQUIRED) |
| | | public String district; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 是否删除: 0表示未删除 1表示删除. |
| | | */ |
| | | @Schema(description = "删除标识,表单不用填写", requiredMode = Schema.RequiredMode.NOT_REQUIRED) |
| | | @Schema(description = "删除标识,form表单中不存在,只在查询显示中有效", requiredMode = Schema.RequiredMode.NOT_REQUIRED) |
| | | public Deleted deleted; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "所在片区名称,只在查询中有效") |
| | | @Schema(description = "所在片区名称,form表单中不存在,只在查询显示中有效") |
| | | public String blockName ; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "所属农户类型名称,只在查询中有效") |
| | | @Schema(description = "所属农户类型名称,form表单中不存在,只在查询显示中有效") |
| | | public String typeName ; |
| | | |
| | | } |