添加项目文件。
This commit is contained in:
79
MetroGauges/Database/Enitys/FieldInfo.cs
Normal file
79
MetroGauges/Database/Enitys/FieldInfo.cs
Normal file
@@ -0,0 +1,79 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MetroGauges.Database.Enitys
|
||||
{
|
||||
public class FieldInfo :EntityBase
|
||||
{
|
||||
|
||||
public long Id { get; set; }
|
||||
|
||||
public long Blockid { get; set; }
|
||||
|
||||
|
||||
|
||||
private string _FieldName;
|
||||
public string Fieldname
|
||||
{
|
||||
get
|
||||
{
|
||||
return _FieldName;
|
||||
}
|
||||
set
|
||||
{
|
||||
_FieldName = value;
|
||||
OnPropertyChanged("Fieldname");
|
||||
}
|
||||
}
|
||||
|
||||
private string _Display;
|
||||
public string Display
|
||||
{
|
||||
get
|
||||
{
|
||||
return _Display;
|
||||
}
|
||||
set
|
||||
{
|
||||
_Display = value;
|
||||
OnPropertyChanged("Display");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private string _FieldValue;
|
||||
public string Fieldvalue
|
||||
{
|
||||
get
|
||||
{
|
||||
return _FieldValue;
|
||||
}
|
||||
set
|
||||
{
|
||||
_FieldValue = value;
|
||||
OnPropertyChanged("Fieldvalue");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private string _fieldtype;
|
||||
public string Fieldtype
|
||||
{
|
||||
get
|
||||
{
|
||||
return _fieldtype;
|
||||
}
|
||||
set
|
||||
{
|
||||
_fieldtype = value;
|
||||
OnPropertyChanged("Fieldtype");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user