17 lines
503 B
C#

namespace Mesnac.Action.ChemicalWeighing.LjWeight
{
//select Id,Name,ActWeight,HighLevel,HighWeight,LowLevel,LowWeight from WeightSetting;
public class WeightSettingView
{
public int Id { get; set; }
public string Name { get; set; }
public float ActWeight { get; set; }
public float HighLevel { get; set; }
public float HighWeight { get; set; }
public float LowLevel { get; set; }
public float LowWeight { get; set; }
}
}