using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOfflineMarketReporterrorCreateModel Data Structure.
///
[Serializable]
public class AlipayOfflineMarketReporterrorCreateModel : AopObject
{
///
/// 发生错误的时候,当前系统的毫秒数,系统会把当前时间构建成Date对象保存为错误发生时间
///
[XmlElement("err_time")]
public long ErrTime { get; set; }
///
/// 如果:type是tableNum 请设置table_num字段作为桌码
///
[XmlElement("feature")]
public ReportErrorFeature Feature { get; set; }
///
/// 商户ID
///
[XmlElement("merchant_id")]
public string MerchantId { get; set; }
///
/// 口碑门店ID
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
///
/// 上传类型,通过类型来区分不同错误: value=tableNum 代表扫码点菜
///
[XmlElement("type")]
public string Type { get; set; }
///
/// 用户的ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}