| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- package com.imt.intimamedia.vo
- {
- import com.imt.intimamedia.helpers.AMFDateConverter;
-
- [RemoteClass(alias="com.imt.intimamedia.vo.TreatmentVo")]
- [Bindable]
- /**
- * Objet de RDV
- */
- public class TreatmentVo
- {
- private var _type : String;
- private var _name : String;
- private var _posology : String;
- private var _startDate : String;
-
-
- /**
- * Présence de HTA
- *
- * @default false
- */
- public function get type () : String
- {
- return _type;
- }
-
- /**
- * @private
- */
- public function set type ( value : String ) : void
- {
- _type = value;
- }
-
- /**
- * Présence de HTA
- *
- * @default false
- */
- public function get name () : String
- {
- return _name;
- }
-
- /**
- * @private
- */
- public function set name ( value : String ) : void
- {
- _name = value;
- }
-
- /**
- * Présence de HTA
- *
- * @default false
- */
- public function get posology () : String
- {
- return _posology;
- }
-
- /**
- * @private
- */
- public function set posology ( value : String ) : void
- {
- _posology = value;
- }
-
- /**
- * Date du traitement
- *
- * @default null
- */
- public function get startDate () : String
- {
- return _startDate;
- }
-
- /**
- * @private
- */
- public function set startDate ( value : String ) : void
- {
- _startDate = value;
- }
- }
- }
|