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.
78 lines
1.9 KiB
C#
78 lines
1.9 KiB
C#
using FreeSql.DataAnnotations;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
{
|
|
///<summary>
|
|
///配方信息
|
|
///</summary>
|
|
public class xl_weigh
|
|
{
|
|
/// <summary>
|
|
/// Desc:主键
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[Column(IsPrimary = true, IsIdentity = true)]
|
|
public int ID { get; set; }
|
|
/// <summary>
|
|
/// Desc:台机号
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Equip_Code { get; set; }
|
|
/// <summary>
|
|
/// Desc:物料ID
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Recipe_ID { get; set; }
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? Bin_Serial { get; set; }
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int Weight_Id { get; set; }
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Material_ID { get; set; }
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? Station { get; set; }
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public decimal? Set_Weight { get; set; }
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public decimal? Set_Error { get; set; }
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public decimal? Cpk_Error { get; set; }
|
|
}
|
|
}
|