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

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

    @TableId
    private String charge_code;

    @TableId
    private Integer property;

    @TableId
    private String serial;

    @TableId
    private String p_value;

    public String getCharge_code() {
        return charge_code;
    }

    public void setCharge_code(String charge_code) {
        this.charge_code = charge_code;
    }

    public Integer getProperty() {
        return property;
    }

    public void setProperty(Integer property) {
        this.property = property;
    }

    public String getSerial() {
        return serial;
    }

    public void setSerial(String serial) {
        this.serial = serial;
    }

    public String getP_value() {
        return p_value;
    }

    public void setP_value(String p_value) {
        this.p_value = p_value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy