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.

24 lines
742 B
C#

1 year ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.Entity
{
public class xl_station_sub
{
public string ID { get; set; }
public string MainId { get; set; }
public string StationSubName { get; set; }
public double Station_Weight_Medium { get; set; }
public double Station_Weight_Low { get; set; }
public double Station_Weight_Advance { get; set; }
public double Station_Speed_Hight { get; set; }
public double Station_Speed_Medium { get; set; }
public double Station_Speed_Low { get; set; }
public DateTime CreateDateTime { get; set; }
}
}