using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
namespace NXWMS.Client.Model.AppModels.Result
{
///
/// 客户端数据源字段顺序结果
///
public class ClientFieldOrderResult
{
///
/// 字段名称
///
public string FieldName { get; set; }
///
/// 字段描述
///
public string FieldDesc { get; set; }
///
/// 最大长度限制
///
public int? MaxLength { get; set; }
///
/// 最小长度限制
///
public int? MinLength { get; set; }
///
/// 默认值
///
public string DefaultValue { get; set; }
///
/// 正则匹配
///
public string Regular { get; set; }
}
}