All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.founder.core.domain.GsConfig Maven / Gradle / Ivy

The newest version!
package com.founder.core.domain;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;

import java.io.Serializable;

@TableName(value = "gjyb_config")
public class GsConfig implements Serializable {
    @TableId(value = "key_name", type = IdType.INPUT)
    private String key_name;//[key_name] [varchar](30) NOT NULL,
    private String key_value;//[key_value] [varchar](100) NULL,
    private String comments;//[comment] [varchar](200) NULL,

    public String getKey_name() {
        return key_name;
    }

    public void setKey_name(String key_name) {
        this.key_name = key_name;
    }

    public String getKey_value() {
        return key_value;
    }

    public void setKey_value(String key_value) {
        this.key_value = key_value;
    }

    public String getComments() {
        return comments;
    }

    public void setComments(String comments) {
        this.comments = comments;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy