You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
1.5 KiB
C#
75 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
{
|
|
/// <summary>
|
|
/// 实体类LR_BarcodeLog
|
|
/// </summary>
|
|
[Serializable]
|
|
public class LR_BarcodeLog
|
|
{
|
|
#region 私有字段
|
|
|
|
private string _equip_Code;
|
|
private string _scan_Time;
|
|
private string _scan_Bar;
|
|
private string _material;
|
|
private int? _bin;
|
|
private int? _scan_State;
|
|
private int? _iF_Flag;
|
|
|
|
|
|
#endregion
|
|
|
|
#region 公有属性
|
|
|
|
public string Equip_Code
|
|
{
|
|
get { return _equip_Code; }
|
|
set { _equip_Code = value; }
|
|
}
|
|
|
|
public string Scan_Time
|
|
{
|
|
get { return _scan_Time; }
|
|
set { _scan_Time = value; }
|
|
}
|
|
|
|
public string Scan_Bar
|
|
{
|
|
get { return _scan_Bar; }
|
|
set { _scan_Bar = value; }
|
|
}
|
|
|
|
public string Material
|
|
{
|
|
get { return _material; }
|
|
set { _material = value; }
|
|
}
|
|
|
|
public int? Bin
|
|
{
|
|
get { return _bin; }
|
|
set { _bin = value; }
|
|
}
|
|
|
|
public int? Scan_State
|
|
{
|
|
get { return _scan_State; }
|
|
set { _scan_State = value; }
|
|
}
|
|
|
|
public int? IF_Flag
|
|
{
|
|
get { return _iF_Flag; }
|
|
set { _iF_Flag = value; }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|