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.

25 lines
381 B

7 months ago
  1. package com.gaotao.modules.sys.entity;
  2. import jakarta.persistence.*;
  3. import lombok.Data;
  4. @Data
  5. public class SysParametersDefault {
  6. private Double parameterId;
  7. private String module;
  8. private String paraDesc;
  9. private String paraValue;
  10. private String paraType;
  11. private String paraTypeDb;
  12. private String allSiteFlag;
  13. private String remark;
  14. }