namespace ZR.Model.Business
{
///
/// 后道标签打印记录
///
[SugarTable("qc_backend_record_label_print")]
public class QcBackendRecordLabelPrint
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public string Id { get; set; }
///
/// 设备编码
///
[SugarColumn(ColumnName = "machine_code")]
public string MachineCode { get; set; }
///
/// 标签编码
///
[SugarColumn(ColumnName = "label_code")]
public string LabelCode { get; set; }
///
/// 后道工单号
///
[SugarColumn(ColumnName = "work_order")]
public string WorkOrder { get; set; }
///
/// 零件号
///
[SugarColumn(ColumnName = "part_number")]
public string PartNumber { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 班组
///
public string Team { get; set; }
///
/// 批次号
///
[SugarColumn(ColumnName = "batch_code")]
public string BatchCode { get; set; }
///
/// 流水号
///
[SugarColumn(ColumnName = "serial_number")]
public int? SerialNumber { get; set; }
///
/// 零件数
///
[SugarColumn(ColumnName = "part_num")]
public int? PartNum { get; set; }
///
/// 标签类别 1-箱标签 2-产品标签 3-其他
///
[SugarColumn(ColumnName = "label_type")]
public int? LabelType { get; set; }
///
/// 箱最大容量
///
[SugarColumn(ColumnName = "box_max_num")]
public int? BoxMaxNum { get; set; }
///
/// 是否满箱 1-是 0-否
///
[SugarColumn(ColumnName = "is_full")]
public int? IsFull { get; set; }
///
/// 是否拼箱 1-是 0-否
///
[SugarColumn(ColumnName = "is_lcl")]
public int? IsLcl { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "create_by")]
public string CreateBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
}
}