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.
lj_plc/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjPlanning/LjPlanningView.cs

40 lines
788 B
C#

using System;
namespace Mesnac.Action.ChemicalWeighing.LjPlanning
{
public class LjPlanningView
{
public int Id { get; set; }
public string PlanNo { get; set; }
public string Status { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
public string BegTime { get; set; }
public string EndTime { get; set; }
public int NumCar { get; set; }
public int Unit { get; set; }
public string Remark { get; set; }
public bool IsEnable { get; set; }
public int FormulaId { get; set; }
public string FormulaName { get; set; }
public string PlanName { get; set; }
public string ClassName { get; set; }
}
}