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.
lj_plc/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/FreeDb/DBEntity/LjFormulaDetailEntity.cs

130 lines
2.5 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
// Website: http://www.freesql.net
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using FreeSql.DataAnnotations;
namespace Mesnac.Action.ChemicalWeighing.FreeDb.DBEntity
{
[Table(Name = "Lj_Formula_Detail")]
public partial class LjFormulaDetailEntity
{
[Column(IsPrimary = true, IsIdentity = true)]
public int Id { get; set; }
public int? ActionCode { get; set; }
/// <summary>
/// 动作Id
/// </summary>
public int? ActionId { get; set; }
/// <summary>
/// 动作名称
/// </summary>
[Column(DbType = "nvarchar(50)")]
public string ActionName { get; set; } = string.Empty;
public int BinNo { get; set; }
/// <summary>
/// 糊化机称量Copy
/// </summary>
public int? CbCopyC { get; set; }
/// <summary>
/// 湿混机混合配方copy
/// </summary>
public int? CbCopyH { get; set; }
/// <summary>
/// 糊化机混合配方copy
/// </summary>
public int? CpSiloH { get; set; }
public int FormulaId { get; set; }
/// <summary>
/// 1 称量 2 混合
/// </summary>
public int FormulaType { get; set; }
/// <summary>
/// 机台
/// </summary>
[Column(DbType = "nvarchar(2)")]
public string Machine { get; set; } = string.Empty;
[Column(DbType = "nvarchar(50)")]
public string MachineType { get; set; } = string.Empty;
/// <summary>
/// 物料编码
/// </summary>
public int MId { get; set; }
[Column(DbType = "nvarchar(50)")]
public string MName { get; set; } = string.Empty;
public double? SetTolerance { get; set; }
public double? SetValue { get; set; }
/// <summary>
/// 速度
/// </summary>
public double? Speed { get; set; }
/// <summary>
/// 物料Id
/// </summary>
public int? StockMaterialId { get; set; }
/// <summary>
/// 温度
/// </summary>
public double? Temp { get; set; }
public double? TimeInfo { get; set; }
public double Tolerance { get; set; }
/// <summary>
/// 重量
/// </summary>
public double Weight { get; set; }
}
}