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.

16 lines
210 B

  1. package com.ruoyi.system.domain;
  2. import lombok.Data;
  3. @Data
  4. public class SysMapLocation {
  5. private String level;
  6. private String longitude;
  7. private String latitude;
  8. private String keyWord;
  9. }