Digital Office Automation System Backend
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.

DkCheckInConfigDTO.java 326B

1234567891011121314151617181920212223242526
  1. package com.ruoyi.zhushi.entity;
  2. import com.ruoyi.common.core.domain.BaseEntity;
  3. import lombok.Data;
  4. @Data
  5. public class DkCheckInConfigDTO extends BaseEntity {
  6. private int id;
  7. private String name;
  8. private Integer radius;
  9. private Boolean enabled;
  10. private String lng;
  11. private String lat;
  12. }