java后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TGisXjqy.java 2.4 KiB

3 days ago
3 days ago
3 days ago
3 days ago
3 days ago
3 days ago
3 days ago
3 days ago
3 days ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package com.ruoyi.business.domain;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.ruoyi.common.annotation.Excel;
  5. import com.ruoyi.common.core.domain.BaseEntity;
  6. /**
  7. * 乡级区域对象 t_gis_xjqy
  8. *
  9. * @author rongxin
  10. * @date 2025-09-04
  11. */
  12. public class TGisXjqy extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 区划代码 */
  16. @Excel(name = "区划代码")
  17. private String XJQYDM;
  18. /** 区划名称 */
  19. @Excel(name = "区划名称")
  20. private String XJQYMC;
  21. /** 标识码 */
  22. @Excel(name = "标识码")
  23. private Long BSM;
  24. /** 要素代码 */
  25. @Excel(name = "要素代码")
  26. private String YSDM;
  27. /** 空间矢量 */
  28. private String theGeom;
  29. /** 部门级联代码 */
  30. @Excel(name = "部门级联代码")
  31. private String importCode;
  32. /** fid */
  33. @Excel(name = "fid")
  34. private Long fid;
  35. public void setXJQYDM(String XJQYDM)
  36. {
  37. this.XJQYDM = XJQYDM;
  38. }
  39. public String getXJQYDM()
  40. {
  41. return XJQYDM;
  42. }
  43. public void setXJQYMC(String XJQYMC)
  44. {
  45. this.XJQYMC = XJQYMC;
  46. }
  47. public String getXJQYMC()
  48. {
  49. return XJQYMC;
  50. }
  51. public void setBSM(Long BSM)
  52. {
  53. this.BSM = BSM;
  54. }
  55. public Long getBSM()
  56. {
  57. return BSM;
  58. }
  59. public void setYSDM(String YSDM)
  60. {
  61. this.YSDM = YSDM;
  62. }
  63. public String getYSDM()
  64. {
  65. return YSDM;
  66. }
  67. public void setTheGeom(String theGeom)
  68. {
  69. this.theGeom = theGeom;
  70. }
  71. public String getTheGeom()
  72. {
  73. return theGeom;
  74. }
  75. public void setImportCode(String importCode)
  76. {
  77. this.importCode = importCode;
  78. }
  79. public String getImportCode()
  80. {
  81. return importCode;
  82. }
  83. public void setFid(Long fid)
  84. {
  85. this.fid = fid;
  86. }
  87. public Long getFid()
  88. {
  89. return fid;
  90. }
  91. @Override
  92. public String toString() {
  93. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  94. .append("XJQYDM", getXJQYDM())
  95. .append("XJQYMC", getXJQYMC())
  96. .append("BSM", getBSM())
  97. .append("YSDM", getYSDM())
  98. .append("theGeom", getTheGeom())
  99. .append("importCode", getImportCode())
  100. .append("fid", getFid())
  101. .toString();
  102. }
  103. }