using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// InputFieldModel Data Structure.
///
[Serializable]
public class InputFieldModel : AopObject
{
///
/// 默认提示值,例如歌华宽带的金额为100的倍数
///
[XmlElement("default_value")]
public string DefaultValue { get; set; }
///
/// 域英文名称 例如:billkey
///
[XmlElement("field_name")]
public string FieldName { get; set; }
///
/// 输入框下方文字提示,例如: 户号为10位数字
///
[XmlElement("field_tips")]
public string FieldTips { get; set; }
///
/// 页面显示提示 例如:手机号码
///
[XmlElement("field_title")]
public string FieldTitle { get; set; }
///
/// 控件类型 输入框类型 例如:inputText (文本输入框)
///
[XmlElement("field_type")]
public string FieldType { get; set; }
///
/// 控件展示顺序 例如:优选级 1
///
[XmlElement("priority")]
public string Priority { get; set; }
///
/// 输入域的校验规则模型
///
[XmlArray("regexp_rule_list")]
[XmlArrayItem("validation_rule")]
public List RegexpRuleList { get; set; }
}
}