ab56a9bcf7
SVN-Revision: r240
27 lines
574 B
C#
27 lines
574 B
C#
/******************************
|
|
* 说明:字段类型model
|
|
* 创建人:龚宇超
|
|
* 创建日期:2017-11-08
|
|
* 修改人:
|
|
* 修改日期:
|
|
* 修改备注:
|
|
* 版本:1.0.0.0
|
|
******************************/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Lskj.Model
|
|
{
|
|
/// <summary>
|
|
/// 字段类型model
|
|
/// </summary>
|
|
public class FieldModel
|
|
{
|
|
public FieldType DataType { get; set; }
|
|
public string FiledName { get; set; }
|
|
public string FiledValue { get; set; }
|
|
}
|
|
}
|