com.founder.core.domain.MzVisitTableKey Maven / Gradle / Ivy
package com.founder.core.domain;
import java.io.Serializable;
public class MzVisitTableKey implements Serializable {
private String patient_id;
private Integer times;
public String getPatient_id() {
return patient_id;
}
public void setPatient_id(String patient_id) {
this.patient_id = patient_id;
}
public Integer getTimes() {
return times;
}
public void setTimes(Integer times) {
this.times = times;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy