New file |
| | |
| | | package com.dy.pipIrrGlobal.voIr; |
| | | |
| | | import com.dy.common.po.BaseEntity; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.apache.logging.log4j.core.config.plugins.validation.constraints.NotBlank; |
| | | |
| | | /** |
| | | * @author :WuZeYu |
| | | * @Date :2024/5/25 9:29 |
| | | * @LastEditTime :2024/5/25 9:29 |
| | | * @Description |
| | | */ |
| | | @Data |
| | | @Schema(name = "作物视图") |
| | | public class VoCrop implements BaseEntity { |
| | | @Schema(description = "实体id") |
| | | private String id; |
| | | |
| | | @Schema(description = "作物名称") |
| | | private String cropName; |
| | | |
| | | @Schema(description = "备注") |
| | | private String remarks; |
| | | } |