using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// DetailBean Data Structure.
///
[Serializable]
public class DetailBean : AopObject
{
///
/// 自定义附件标识,后续下载附件使用此标识区分。
///
[XmlElement("code")]
public string Code { get; set; }
///
/// 页面展示的附件中文描述(collectAttachement值为true时必填)
///
[XmlElement("description")]
public string Description { get; set; }
///
/// 展示顺序(collectAttachement值为true时必填)
///
[XmlElement("order")]
public long Order { get; set; }
}
}