|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
|
|
|
{
|
|
|
|
|
public class LR_plan
|
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
public string Dosing_Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Plan_Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Equip_Code { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Plan_Serial { get; set; }
|
|
|
|
|
public string Recipe_ID { get; set; }
|
|
|
|
|
public string Recipe_Code { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Recipe_Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Version { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int Recipe_Type { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Shift_Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Shift_Class { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Plan_Num { get; set; }
|
|
|
|
|
public int Real_Num { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Duration_Time { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Start_Date { get; set; }
|
|
|
|
|
|
|
|
|
|
public string End_Date { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Weight_Man { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Stock_Man { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Plan_Batch { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Plan_State { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Plan_Date { get; set; }
|
|
|
|
|
public decimal Total_Weight { get; set; }
|
|
|
|
|
|
|
|
|
|
public decimal Total_Error { get; set; }
|
|
|
|
|
public int IsRetransmission { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 重传次数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Retransmission_Num { get; set; }
|
|
|
|
|
public int IF_FLAG { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|