Package open.dolphin.dto

Examples of open.dolphin.dto.PatientVisitSpec


     * @return PatientVisitModel のコレクション
     */
    @SuppressWarnings("unchecked")
    public Collection<PatientVisitModel> getPvt(String[] date, int firstRecord) {
       
        PatientVisitSpec spec = new PatientVisitSpec();
        spec.setDate(date[0]);
        spec.setAppodateFrom(date[1]);
        spec.setAppodateTo(date[2]);
        spec.setSkipCount(firstRecord);
       
        try {
            Collection<PatientVisitModel> ret = getService().getPvt(spec);
           
            // 健康保険情報は,カルテオープン時に取得する
View Full Code Here

TOP

Related Classes of open.dolphin.dto.PatientVisitSpec

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.