using LJLib.DAL.SQL; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JLHHJSvr.Com.Model { [PK(new[] { "springid" })] public sealed class u_spring { /// /// 弹簧id /// public int? springid { get; set; } /// /// 线径MM /// public decimal? line_diameter { get; set; } /// /// 高度CM /// public decimal? height { get; set; } /// /// 口径CM /// public decimal? caliber { get; set; } /// /// 中心直径CM /// public decimal? center_diameter { get; set; } /// /// 圈数 /// public decimal? cyclenum { get; set; } /// /// 克重KG /// public decimal? gram_weight { get; set; } /// /// 备注 /// public string dscrp { get; set; } /// /// 建立时间 /// public DateTime? createtime { get; set; } /// /// 建立人 /// public string createby { get; set; } /// /// 床网类型id /// public int? bedtypeid { get; set; } /// /// 弹簧类型id /// public int? springtypeid { get; set; } /// /// 审核 /// public byte? flag { get; set; } /// /// 有效 /// public byte? inuse { get; set; } /// /// 修改人 /// public string modemp { get; set; } /// /// 修改时间 /// public DateTime? moddate { get; set; } /// /// 自由高度 /// public decimal? free_height { get; set; } /// /// 实际高度 /// public decimal? actual_height { get; set; } /// /// 硬度 /// public decimal? hardness { get; set; } /// /// 压陷硬度10% /// public decimal? hardness_indentation_1 { get; set; } /// /// 压陷硬度20% /// public decimal? hardness_indentation_2 { get; set; } /// /// 压陷硬度40% /// public decimal? hardness_indentation_4 { get; set; } /// /// 排列宽 /// public decimal? arrangement_width { get; set; } /// /// 排列长 /// public decimal? arrangement_height { get; set; } /// /// 卷排列宽 /// public decimal? roll_width { get; set; } /// /// 卷排列长 /// public decimal? roll_length { get; set; } /// /// 压缩比 /// public decimal? comperssion_rate { get; set; } public int? his_typeid { get; set; } public string name { get { return $"{line_diameter.Value.ToString("0.###")}/{height.Value.ToString("0.###")}/{caliber.Value.ToString("0.###")}/{center_diameter.Value.ToString("0.###")}/{cyclenum.Value.ToString("0.###")}/"; } set { } } } }