|
- package com.ruoyi.resource.domain;
-
- import com.ruoyi.common.annotation.Excel;
- import lombok.Data;
-
- import java.math.BigDecimal;
-
- /**
- * 地块属性对象 t_resource_land
- *
- * @author rongxin
- * @date 2025-09-05
- */
- @Data
- public class TResourceVo {
- private static final long serialVersionUID = 1L;
-
-
- /** fid */
- private Long fid;
-
- /** 区域位置名称 */
- @Excel(name = "区域位置名称")
- private String deptName;
-
- /** 标识码 */
- @Excel(name = "标识码 */")
- private Integer bsm;
-
- /** 要素代码 */
- @Excel(name = "要素代码")
- private String ysdm;
-
- /** 地块代码 */
- @Excel(name = "地块代码")
- private String dkbm;
-
- /** 地块名称 */
- @Excel(name = "地块名称")
- private String dkmc;
-
- /** 所有权性质 */
- @Excel(name = "所有权性质", dictType = "ownership_type")
- private String syqxz;
-
- /** 地块类别 */
- @Excel(name = "地块类别", dictType = "land_type")
- private String dklb;
-
- /** 土地利用类型 */
- @Excel(name = "土地利用类型", dictType = "land_use")
- private String tdlylx;
-
- /** 地力等级 */
- @Excel(name = "地力等级", dictType = "land_grade_type")
- private String dldj;
-
- /** 土地用途 */
- @Excel(name = "土地用途", dictType = "land_use_type")
- private String tdyt;
-
- /** 是否基本农田 */
- @Excel(name = "是否基本农田", dictType = "is_common")
- private String sfjbnt;
-
- /** 地块东至 */
- @Excel(name = "地块东至")
- private String dkdz;
-
- /** 地块西至 */
- @Excel(name = "地块西至")
- private String dkxz;
-
- /** 地块南至 */
- @Excel(name = "地块南至")
- private String dknz;
-
- /** 地块北至 */
- @Excel(name = "地块北至")
- private String dkbz;
-
- /** 备注信息 */
- @Excel(name = "备注信息")
- private String dkbzxx;
-
- /** 指界人姓名 */
- @Excel(name = "指界人姓名")
- private String zjrxm;
-
- /** 实测面积( ㎡) */
- @Excel(name = "实测面积( ㎡)")
- private BigDecimal scmj;
-
- /** 实测面积(亩) */
- @Excel(name = "实测面积(亩)")
- private BigDecimal scmjm;
-
- /** 是否帐外地 字典 is_common */
- @Excel(name = "是否帐外地", dictType = "is_common")
- private String sfzwd;
-
-
- // ------------------------------
-
- /** id */
- private Long id;
-
- /** 经营面积(亩) */
- @Excel(name = "经营面积(亩)")
- private BigDecimal jymj;
-
- /** 经营方式 */
- @Excel(name = "经营方式")
- private String jyfs;
-
- /** 经营对象名称 */
- @Excel(name = "经营对象名称")
- private String jydxmc;
-
- /** 经营开始时间 */
- @Excel(name = "经营开始时间")
- private String jykssj;
-
- /** 经营结束时间 */
- @Excel(name = "经营结束时间")
- private String jyjssj;
-
- /** 承包金额(元) */
- @Excel(name = "承包金额(元)")
- private BigDecimal cbje;
-
- /** 备注 */
- @Excel(name = "备注")
- private String bzxx;
-
- /** 实物图 */
- private String dkImg;
-
- /** 调查状态 */
- @Excel(name = "调查状态", dictType = "survey_status")
- private String surveyStatus;
-
-
-
-
- }
|