source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/vo/reports/SummaryReportVO.as@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 787 bytes
Line 
1package gov.va.med.edp.vo.reports
2{
3 import com.adobe.cairngorm.vo.IValueObject;
4
5 import mx.collections.ArrayCollection;
6
7 [Bindable]
8 public class SummaryReportVO implements IValueObject
9 {
10 public var totAllEDVisits: int;
11 public var avgAllEDVisitTime: String;
12 public var avgAllAdmitDecisionTime: String;
13 public var totAllVisitOver6Hrs: int;
14 public var totAllVisitOver23Hrs: int;
15 public var numAdmittedToObservation: int;
16
17 public var totNotVaAdmittedVisits: int;
18 public var avgNotVaAdmittedVisitTime: String;
19
20 public var totVaAdmittedEDVisits: int;
21 public var totVaAdmittedDelayOver6Hrs: int;
22 public var avgVaAdmittedDelayTime: String;
23 public var avgVaAdmittedDecisionTime: String;
24 public var numVaAdmittedDelayOver6Hrs: int;
25 }
26}
Note: See TracBrowser for help on using the repository browser.