using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// BPOpenApiPUID Data Structure.
///
[Serializable]
public class BPOpenApiPUID : AopObject
{
///
/// 系统名称
///
[XmlElement("app_name")]
public string AppName { get; set; }
///
/// 业务ID,对应业务单条记录的ID
///
[XmlElement("biz_id")]
public string BizId { get; set; }
///
/// 业务类型。不要填写下划线、点等特殊符号
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 一般留空。如果一个biz_id可发起多个流程实例,则填写此值
///
[XmlElement("unique_key")]
public string UniqueKey { get; set; }
}
}