2025-09-02 16:16:13 +08:00
|
|
|
|
|
2025-09-12 09:08:51 +08:00
|
|
|
|
namespace DOAN.Model.MES.quality.IPQC
|
2025-09-02 16:16:13 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 追溯,扫sn追溯码记录(模板,实际使用需要按时间分表)
|
|
|
|
|
|
/// </summary>
|
2025-09-12 09:08:51 +08:00
|
|
|
|
[SugarTable("qc_ipqc_trace_sn_scan")]
|
|
|
|
|
|
public class QcIpqcTraceSnScan
|
2025-09-02 16:16:13 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <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; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|