| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- package com.goldenwater.xajgl.domain;
- import com.goldenwater.common.annotation.Excel;
- import com.goldenwater.common.core.domain.BaseEntity;
- import lombok.Data;
- import java.math.BigDecimal;
- /**
- * 站点基础信息对象 ST_XAJ_B
- *
- * @author xajgl
- */
- @Data
- public class StXajB extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /** 站码 */
- @Excel(name = "站码")
- private String stcd;
- /** 站名 */
- @Excel(name = "站名")
- private String stnm;
- /** 类型:ZZ:水文站,DRP:雨量站,WIU:取水户,SK:水库 */
- @Excel(name = "类型")
- private String tp;
- /** 经度 */
- @Excel(name = "经度")
- private BigDecimal lgtd;
- /** 纬度 */
- @Excel(name = "纬度")
- private BigDecimal lttd;
- /** 省份 */
- @Excel(name = "省份")
- private String prov;
- /** 地市名称 */
- @Excel(name = "地市名称")
- private String city;
- /** 区县名称 */
- @Excel(name = "区县名称")
- private String county;
- /** 河流名称 */
- @Excel(name = "河流名称")
- private String rvnm;
- /** 行政区划编码 */
- @Excel(name = "行政区划编码")
- private String addvcd;
- /** 业务域编码 */
- @Excel(name = "业务域编码")
- private String bizCode;
- /** 社会信用编码 */
- @Excel(name = "社会信用编码")
- private String uscc;
- /** 经济类型 */
- @Excel(name = "经济类型")
- private String tradTp;
- /** 共享单位 */
- @Excel(name = "共享单位")
- private String unit;
- /** 顺序 */
- @Excel(name = "顺序")
- private BigDecimal orderNm;
- /** x轴偏差 */
- @Excel(name = "x轴偏差")
- private BigDecimal xoffset;
- /** y轴偏差 */
- @Excel(name = "y轴偏差")
- private BigDecimal yoffset;
- /** 区县分类 */
- @Excel(name = "区县分类")
- private String county1;
- }
|