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

com.founder.core.domain.YpDosage 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 = "yp_dosage")
public class YpDosage implements Serializable {

    @TableId
    private String code;

    private String py_code;

    private String name;

    private String d_code;

    private String deleted_flag;

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getPy_code() {
        return py_code;
    }

    public void setPy_code(String py_code) {
        this.py_code = py_code;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getD_code() {
        return d_code;
    }

    public void setD_code(String d_code) {
        this.d_code = d_code;
    }

    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