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

org.openmrs.module.ipd.api.model.WardPatientsSummary Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.openmrs.module.ipd.api.model;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@NoArgsConstructor
@AllArgsConstructor
@Setter
@Getter
public class WardPatientsSummary {
    private Long totalPatients = 0L;
    private Long totalProviderPatients = 0L;

    // to be added in future
//    private Integer toBeDischargedPatients;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy