com.founder.core.domain.YpDictKey Maven / Gradle / Ivy
package com.founder.core.domain;
import java.io.Serializable;
public class YpDictKey implements Serializable {
private String charge_code;
private String serial;
public String getCharge_code() {
return charge_code;
}
public void setCharge_code(String charge_code) {
this.charge_code = charge_code;
}
public String getSerial() {
return serial;
}
public void setSerial(String serial) {
this.serial = serial;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy