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

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

There is a newer version: 3.6.1.9
Show 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 comment;//[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 getComment() {
        return comment;
    }

    public void setComment(String comment) {
        this.comment = comment;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy