using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// BccEventDetail Data Structure.
///
[Serializable]
public class BccEventDetail : AopObject
{
///
/// 活动id
///
[XmlElement("activity_id")]
public string ActivityId { get; set; }
///
/// 事件结果标识:true/false
///
[XmlElement("complete_tag")]
public bool CompleteTag { get; set; }
///
/// 合约单号
///
[XmlElement("contract_no")]
public string ContractNo { get; set; }
///
/// 事件内容
///
[XmlElement("event_conent")]
public string EventConent { get; set; }
///
/// 事件发生日期,如打卡日期
///
[XmlElement("event_day")]
public string EventDay { get; set; }
///
/// 事件类型:用来记录事件类型,如钉钉打卡
///
[XmlElement("event_type")]
public string EventType { get; set; }
///
/// 记录系统创建时间
///
[XmlElement("gm_create")]
public string GmCreate { get; set; }
///
/// 应约主体id
///
[XmlElement("sign_principal_id")]
public string SignPrincipalId { get; set; }
///
/// 芝麻roleId
///
[XmlElement("zm_role_id")]
public string ZmRoleId { get; set; }
}
}