dietactivity.as

来自「用Flex实现的一个关于减肥系统的web界面,内部没有实际的业务逻辑,只是一个原」· AS 代码 · 共 24 行

AS
24
字号
package diet.vo.activity
{
	import qs.calendar.CalendarEvent;
	
	[Bindable]
	public class DietActivity
	{
		public var startTime:Date = new Date();
		public var endTime:Date = new Date();
		public var time:Number;
		
		public var type:String;
		// 2009-1-3 yeqi: + for get calorie
		// - for consume calorie..
		public var calorieSum:Number = 0;
		
		// yeqi 2009-1-7: 
		public var calendarEvent:CalendarEvent = new CalendarEvent();
		public function toString():String
		{
			return "";
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?