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.

52 lines
1.1 KiB
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
{
/// <summary>
/// 实体类Pmt_recipe
/// </summary>
[Serializable]
public class Pmt_recipe
{
#region 公有属性
public string ID { get; set; }
public string Equip_Code { get; set; }
public string Recipe_Code { get; set; }
public string Version { get; set; }
public string Recipe_Name { get; set; }
public string Mixer_line { get; set; }
public int Recipe_type { get; set; }
public int Recipe_Used { get; set; }
public int Recipe_Verify { get; set; }
public decimal? Total_Weight { get; set; }
public decimal? Total_Error { get; set; }
public string End_datetime { get; set; }
public string Remark { get; set; }
public int Attach_User { get; set; }
public int GroupBags { get; set; }
public int IF_FLAG { get; set; }
public int Validity { get; set; }
#endregion
}
}