FineUI.FieldType 字段类型

namespace FineUICore
{
    //
    // 摘要:
    //     表格可编辑字段的类型
    public enum FieldType
    {
        //
        // 摘要:
        //     字符串(默认值)
        String,
        //
        // 摘要:
        //     整型
        Int,
        //
        // 摘要:
        //     浮点数(精度为6~7)
        Float,
        //
        // 摘要:
        //     双精度浮点数(精度为15~16)
        Double,
        //
        // 摘要:
        //     布尔型
        Boolean,
        //
        // 摘要:
        //     日期
        Date
    }
}
原文地址:https://www.cnblogs.com/jiangyunfeng/p/13334700.html