using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tiger.Model { [Serializable] [Description("Primary:")] [SugarTable("ModelInfo")] public class ModelInfo { private string _id = null; private string _model = null; private string _modelname = null; private string _prefix = null; private string _snlength = null; [SugarColumn(IsPrimaryKey = true)] public string id { get { return _id; } set { _id = value; } } public string Model { get { return _model; } set { _model = value; } } public string ModelName { get { return _modelname; } set { _modelname = value; } } public string Prefix { get { return _prefix; } set { _prefix = value; } } public string SnLength { get { return _snlength; } set { _snlength = value; } } } }