|
|
|
@ -0,0 +1,76 @@
|
|
|
|
|
using FreeSql.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.FreeDb.DBEntity.Report
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 干混机报表
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public partial class Report_WetMixer
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键标识
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(IsPrimary = true, IsIdentity = true)]
|
|
|
|
|
public int objId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车次
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public int? Batch { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 计划代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public int? planCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 计划名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(DbType = "nvarchar(50)")]
|
|
|
|
|
public string planName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 配方编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public int? recipeCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 配方名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(DbType = "nvarchar(50)")]
|
|
|
|
|
public string recipeName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 记录时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public DateTime? recordTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 报表标识
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(DbType = "varchar(36)")]
|
|
|
|
|
public string reportId { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime? reportTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public int? WetNo { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|