58 lines
1.5 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_sub_scan")]
public class TraceSnSubScan
{
/// <summary>
/// 追溯扫码标签内容
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 子件编号
/// </summary>
[SugarColumn(ColumnName = "sub_code")]
public string SubCode { get; set; }
/// <summary>
/// 子件名称
/// </summary>
[SugarColumn(ColumnName = "sub_name")]
public string SubName { 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 = "sub_part_scan_code")]
public string SubPartScanCode { get; set; }
/// <summary>
/// 是否返工 1-是 0-正常
/// </summary>
[SugarColumn(ColumnName = "is_back")]
public int? IsBack { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
}
}