WebConfigCell.java 731 B

12345678910111213141516171819202122232425262728293031
  1. package com.example.demo.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import lombok.Data;
  7. import java.io.Serializable;
  8. /**
  9. * 网站配置
  10. * @TableName web_config
  11. */
  12. @Data
  13. @TableName(value ="web_config_cell")
  14. public class WebConfigCell implements Serializable {
  15. /**
  16. * ID
  17. */
  18. @TableId(type = IdType.AUTO)
  19. private Integer id;
  20. @TableField(value = "config_type")
  21. private Integer configType;
  22. @TableField(value = "cell_value")
  23. private String cellValue;
  24. @TableField(value="cell_name")
  25. private String cellName;
  26. }