using System; using System.Collections.Generic; using System.Text; using Business.Core.Attributes; using System.IO; namespace Business.StructuredDB.Sqe { /// /// /// public class sqe_chart_data_temp { /// /// 流水号主键 /// public Int64 id { get; set; } /// /// Data主键 /// public Int64 data_id { get; set; } /// /// 分组名称 /// public string sub_group { get; set; } /// /// 类型名称 /// public string type_name { get; set; } /// /// 类型的值 /// [DecimalPrecision(18, 5)] public decimal type_value { get; set; } /// /// Data的日期 /// public DateTime? data_time { get; set; } } }