com.founder.core.domain.YpDictAttKey Maven / Gradle / Ivy
package com.founder.core.domain;
import java.io.Serializable;
public class YpDictAttKey implements Serializable {
private String charge_code;
private Integer property;
private String serial;
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