12345678910111213141516171819202122232425262728293031 |
- package com.example.demo.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * 网站配置
- * @TableName web_config
- */
- @Data
- @TableName(value ="web_config_cell")
- public class WebConfigCell implements Serializable {
- /**
- * ID
- */
- @TableId(type = IdType.AUTO)
- private Integer id;
- @TableField(value = "config_type")
- private Integer configType;
- @TableField(value = "cell_value")
- private String cellValue;
- @TableField(value="cell_name")
- private String cellName;
- }
|