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.
|
|
|
|
using Chloe.Annotations;
|
|
|
|
|
|
|
|
|
|
namespace WorkerSynReport.Data;
|
|
|
|
|
|
|
|
|
|
public partial class Report_Gel {
|
|
|
|
|
|
|
|
|
|
[Column(IsPrimaryKey = true)]
|
|
|
|
|
[AutoIncrement]
|
|
|
|
|
public int objId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车次
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public int? Batch { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int? gelNo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int? planCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string planName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int? recipeCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string recipeName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime? recordTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string reportId { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
}
|