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.
34 lines
1.0 KiB
C#
34 lines
1.0 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.PptPlan
|
|
{
|
|
public class Hw_weigh
|
|
{
|
|
[Column(IsIdentity =true,IsPrimary =true)]
|
|
public int ID { get; set; }
|
|
public string Dosing_ID { get; set; }
|
|
public string Plan_ID { get; set; }
|
|
public string Recipe_ID { get; set; }
|
|
public string Material_ID { get; set; }
|
|
public string Material_Name { get; set; }
|
|
public decimal Set_Weight { get; set; }
|
|
public decimal Set_Error { get; set; }
|
|
public decimal Real_Weight { get; set; }
|
|
public decimal Real_Error { get; set; }
|
|
public string EndTime { get; set; }
|
|
/// <summary>
|
|
/// 固含率
|
|
/// </summary>
|
|
public decimal RRate { get; set; }
|
|
/// <summary>
|
|
/// 固含重量
|
|
/// </summary>
|
|
public decimal RPureWeight { get; set; }
|
|
}
|
|
}
|