New file |
| | |
| | | package com.dy.pipIrrGlobal.voIr; |
| | | |
| | | import com.dy.common.po.BaseEntity; |
| | | import com.dy.common.webUtil.QueryConditionVo; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.*; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author :WuZeYu |
| | | * @Date :2024/5/15 21:11 |
| | | * @LastEditTime :2024/5/15 21:11 |
| | | * @Description |
| | | */ |
| | | @Data |
| | | @Schema(name = "项目视图(查一个)") |
| | | public class VoProjectOne implements BaseEntity { |
| | | @Schema(description = "项目名称") |
| | | public String projectName; |
| | | |
| | | @Schema(description = "项目Id") |
| | | private String id; |
| | | /** |
| | | * 省ID |
| | | */ |
| | | @Schema(description = "省ID") |
| | | private String provinceId; |
| | | /** |
| | | * 市ID |
| | | */ |
| | | @Schema(description = "市ID") |
| | | private String cityId; |
| | | /** |
| | | * 县ID |
| | | */ |
| | | @Schema(description = "县ID") |
| | | private String countyId; |
| | | /** |
| | | * 镇ID |
| | | */ |
| | | @Schema(description = "镇ID") |
| | | private String townId; |
| | | /** |
| | | * 村ID |
| | | */ |
| | | @Schema(description = "村ID") |
| | | private String villageId; |
| | | /** |
| | | * 项目状态;1-启动,2-停止 |
| | | */ |
| | | @Schema(description = "项目状态") |
| | | private Byte projectState; |
| | | |
| | | /** |
| | | * 操作人名字 |
| | | */ |
| | | @Schema(description = "操作人名字") |
| | | private String operatorName; |
| | | |
| | | /** |
| | | * 操作时间 |
| | | */ |
| | | @Schema(description = "操作时间") |
| | | private Date operateDt; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | @Schema(description = "备注") |
| | | private String remarks; |
| | | |
| | | |
| | | } |