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.

SysConfigEntity.java 660B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * Copyright (c) 2016-2019 雷掣 All rights reserved.
  3. *
  4. * https://www.lc_crm.com
  5. *
  6. * 版权所有,侵权必究!
  7. */
  8. package io.renren.entity;
  9. import com.baomidou.mybatisplus.annotation.TableId;
  10. import com.baomidou.mybatisplus.annotation.TableName;
  11. import lombok.Data;
  12. import javax.validation.constraints.NotBlank;
  13. /**
  14. * 系统配置信息
  15. *
  16. * @author Mark sunlightcs@gmail.com
  17. */
  18. @Data
  19. @TableName("sys_config")
  20. public class SysConfigEntity {
  21. @TableId
  22. private Long id;
  23. @NotBlank(message="参数名不能为空")
  24. private String paramKey;
  25. @NotBlank(message="参数值不能为空")
  26. private String paramValue;
  27. private String remark;
  28. }