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 int _snlength = 0;
|
|
[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 int SnLength
|
{
|
get
|
{
|
return _snlength;
|
}
|
set
|
{
|
_snlength = value;
|
}
|
}
|
}
|
}
|