using System.ComponentModel.DataAnnotations;
namespace IStation.Model
{
///
/// 曲线创建方法
///
public enum eCurveCreateMethod
{
///
/// 图片拟合
///
[Display(Name = "图片拟合")]
图片拟合 = 1,
///
/// Excel导入
///
[Display(Name = "Excel导入")]
Excel导入 = 2,
///
/// 曲线表达式
///
[Display(Name = "曲线表达式")]
曲线表达式 = 3,
///
/// 单点生成
///
[Display(Name = "单点生成")]
单点生成 = 4,
///
/// 中间格式导入
///
[Display(Name = "中间格式导入")]
中间格式导入 = 5
}
}