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.
73 lines
2.0 KiB
C#
73 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
{
|
|
/// <summary>
|
|
/// 实体类Pmt_weigh
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Pmt_Bin
|
|
{
|
|
public string Equip_Code { get; set; }
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public int Bin_Serial { get; set; }
|
|
/// <summary>
|
|
/// 料仓名称
|
|
/// </summary>
|
|
public string Bin_Name { get; set; }
|
|
/// <summary>
|
|
/// 条码
|
|
/// </summary>
|
|
public string Bin_Code { get; set; }
|
|
public int Dosing_ID { get; set; }
|
|
/// <summary>
|
|
/// 物料编码
|
|
/// </summary>
|
|
public string Material_ID { get; set; }
|
|
public int Bin_Capacity { get; set; }
|
|
public int Bin_Baseline { get; set; }
|
|
public int Bin_Residua { get; set; }
|
|
public int Bin_UseFlag { get; set; }
|
|
/// <summary>
|
|
/// 料仓实时重量
|
|
/// </summary>
|
|
public decimal BinWeight { get; set; }
|
|
/// <summary>
|
|
/// 料仓设定重量
|
|
/// </summary>
|
|
public decimal LimitWeight { get; set; }
|
|
/// <summary>
|
|
/// 中速重量
|
|
/// </summary>
|
|
public decimal Station_Weight_Medium { get; set; }
|
|
/// <summary>
|
|
/// 低速重量
|
|
/// </summary>
|
|
public decimal Station_Weight_Low { get; set; }
|
|
/// <summary>
|
|
/// 提前量
|
|
/// </summary>
|
|
public decimal Station_Weight_Advance { get; set; }
|
|
/// <summary>
|
|
/// 高速速度
|
|
/// </summary>
|
|
public decimal Station_Speed_Hight { get; set; }
|
|
/// <summary>
|
|
/// 中速速度
|
|
/// </summary>
|
|
public decimal Station_Speed_Medium { get; set; }
|
|
/// <summary>
|
|
/// 低速速度
|
|
/// </summary>
|
|
public decimal Station_Speed_Low { get; set; }
|
|
public int IF_FLAG { get; set; }
|
|
|
|
}
|
|
}
|