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.

38 lines
1.2 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; }
public int Bin_Serial { get; set; }
public string Bin_Name { get; set; }
/// <summary>
/// 条码
/// </summary>
public string Bin_Code { get; set; }
public int Dosing_ID { get; set; }
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; }
public decimal Station_Weight_Medium { get; set; }
public decimal Station_Weight_Low { get; set; }
public decimal Station_Weight_Advance { get; set; }
public decimal Station_Speed_Hight { get; set; }
public decimal Station_Speed_Medium { get; set; }
public decimal Station_Speed_Low { get; set; }
public int IF_FLAG { get; set; }
}
}