2026-01-10 09:40:54 +08:00

92 lines
2.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace RIZO.Model.YALITEST
{
/// <summary>
///
/// </summary>
[SugarTable("test1")]
public class Test1
{
/// <summary>
/// Id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// Lincode
/// </summary>
public string Linecode { get; set; }
/// <summary>
/// Lincename
/// </summary>
public string Linename { get; set; }
/// <summary>
/// Machinecode
/// </summary>
public string Machinecode { get; set; }
/// <summary>
/// Machinename
/// </summary>
public string Machinename { get; set; }
/// <summary>
/// Rountingcode
/// </summary>
public string Rountingcode { get; set; }
/// <summary>
/// Rountingname
/// </summary>
public string Rountingname { get; set; }
/// <summary>
/// Operationcode
/// </summary>
public string Operationcode { get; set; }
/// <summary>
/// Operationname
/// </summary>
public string Operationname { get; set; }
/// <summary>
/// Operationxuhao
/// </summary>
public int? Operationxuhao { get; set; }
/// <summary>
/// Status
/// </summary>
public int? Status { get; set; }
/// <summary>
/// Worker
/// </summary>
public string Worker { get; set; }
/// <summary>
/// 进站时间
/// </summary>
public DateTime? Starttime { get; set; }
/// <summary>
/// 出站时间
/// </summary>
public DateTime? Finishtime { get; set; }
/// <summary>
/// 0待上传1已上传
/// </summary>
public int? Ifupload { get; set; }
/// <summary>
/// Partnumber
/// </summary>
public string Partnumber { get; set; }
}
}