using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.PrintTo.Models
{
public class BarCodeModel
{
///
/// 主键
///
public int ID { get; set; }
///
/// 产品编码
///
public string? ProductCode { get; set; }
///
/// 物料编码
///
public string MaterialCode { get; set; }
///
/// 物料名称
///
public string MaterialName { get; set; }
///
/// 条码
///
public string? BarCode { get; set; }
///
/// 打印时间
///
public DateTime? PrintTime { get; set; }
///
/// 打印名称
///
public string PrintName { get; set; }
///
/// 补打个数SuppleMetNum
///
public int SuppleMetNum { get; set; }
///
/// 打印类型
///
public int PrintType { get; set; }
}
}