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.
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.LjPlanning
|
|
|
|
|
{
|
|
|
|
|
public class LjPlanningView
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string No { 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 Share { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MetageAId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MetageAName { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MixAId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MixAName { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MetageB1Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MetageB1Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MetageB2Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MetageB2Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MixBId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MixBName { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MixCId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MixCName { get; set; }
|
|
|
|
|
|
|
|
|
|
public int RecipeType { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|