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

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

There is a newer version: 3.2.3.2
Show newest version
package com.founder.core.domain;

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

import java.io.Serializable;

@TableName(value="yb_configure")
public class YbConfigure implements Serializable {

    @TableId
    private Integer yb_pdh;

    private Integer mz_pdh;

    private String check_gh_flag;

    private String yb_response_type;

    public Integer getYb_pdh() {
        return yb_pdh;
    }

    public void setYb_pdh(Integer yb_pdh) {
        this.yb_pdh = yb_pdh;
    }

    public Integer getMz_pdh() {
        return mz_pdh;
    }

    public void setMz_pdh(Integer mz_pdh) {
        this.mz_pdh = mz_pdh;
    }

    public String getCheck_gh_flag() {
        return check_gh_flag;
    }

    public void setCheck_gh_flag(String check_gh_flag) {
        this.check_gh_flag = check_gh_flag;
    }

    public String getYb_response_type() {
        return yb_response_type;
    }

    public void setYb_response_type(String yb_response_type) {
        this.yb_response_type = yb_response_type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy