46 lines
1.2 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 DOAN.Model
{
/// <summary>
/// 追溯扫sn追溯码记录模板实际使用需要按时间分表
/// </summary>
[SugarTable("trace_sn_scan")]
public class TraceSnScan
{
/// <summary>
/// 追溯扫码标签内容
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 项目编号
/// </summary>
[SugarColumn(ColumnName = "project_code")]
public string ProjectCode { get; set; }
/// <summary>
/// 零件编号
/// </summary>
[SugarColumn(ColumnName = "production_code")]
public string ProductionCode { get; set; }
/// <summary>
/// 规格
/// </summary>
public string Specification { get; set; }
/// <summary>
/// 追溯码SN
/// </summary>
[SugarColumn(ColumnName = "part_sn")]
public string PartSn { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
}
}