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

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

The newest version!
package com.founder.core.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 java.io.Serializable;

@TableName(value = "gjyb_public_path")
public class GsPublicPath implements Serializable {
    @TableId(value = "infno_code", type = IdType.INPUT)
    private String infno_code;//[infno_code] [varchar](5) NOT NULL,
    @TableField(value = "Interface_name")
    private String interface_name;//[Interface_name] [varchar](50) NULL,
    @TableField(value = "Public_path")
    private String public_path;//[Public_path] [varchar](300) NULL,
    @TableField(value = "descriptions")
    private String descriptions;//[descriptions] [varchar](300) NULL,
    @TableField(value = "deleted_flag")
    private String deleted_flag;//[deleted_flag] [char](1) NOT NULL,

    public String getInfno_code() {
        return infno_code;
    }

    public void setInfno_code(String infno_code) {
        this.infno_code = infno_code;
    }

    public String getInterface_name() {
        return interface_name;
    }

    public void setInterface_name(String interface_name) {
        this.interface_name = interface_name;
    }

    public String getPublic_path() {
        return public_path;
    }

    public void setPublic_path(String public_path) {
        this.public_path = public_path;
    }

    public String getDescriptions() {
        return descriptions;
    }

    public void setDescriptions(String descriptions) {
        this.descriptions = descriptions;
    }

    public String getDeleted_flag() {
        return deleted_flag;
    }

    public void setDeleted_flag(String deleted_flag) {
        this.deleted_flag = deleted_flag;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy