using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ShopBusinessTime Data Structure.
///
[Serializable]
public class ShopBusinessTime : AopObject
{
///
/// 关门时间 格式:HH:mm
///
[XmlElement("close_time")]
public string CloseTime { get; set; }
///
/// 开门时间 格式:HH:mm
///
[XmlElement("open_time")]
public string OpenTime { get; set; }
///
/// 本对象表示周几的营业时间。1~6表示周一到周六,7表示周日
///
[XmlElement("week_day")]
public long WeekDay { get; set; }
}
}