LabelContent.cs 2.9 KB
using CodeLibrary;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.Serialization.Formatters.Binary;
using System.Text;
using System.Threading.Tasks;

namespace OnlineStore.DeviceLibrary
{
    /// <summary>
    /// 标签内容
    /// </summary>
    [Serializable]
    public class LabelContent
    {
        /// <summary>
        /// 创建新出入库信息
        /// </summary>
        /// <param name="wareNo">二维码内容</param>
        /// <param name="platew">宽度</param>
        /// <param name="plateh">高度</param>
        /// <param name="IsNg">是否是入库NG料</param>
        /// <param name="ngMsg">NG消息</param>
        public LabelContent(string wareNo = "", int platew = 0, int plateh = 0, bool _IsNg = false, string ngMsg = "")
        {
            WareCode = wareNo;
            PlateW = platew;
            PlateH = plateh;
            IsNg = _IsNg;
            NgMsg = ngMsg;
        }
        /// <summary>
        /// 物品二维码信息
        /// </summary>
        public string WareCode { get; set; }
        public List<CodeInfo> codeInfos { get; set; }
        /// <summary>
        /// 料盘高度
        /// </summary>
        public int PlateH { get; set; }
        /// <summary>
        /// 料盘宽度
        /// </summary>
        public int PlateW { get; set; } = 7;
        /// <summary>
        /// 是否是入料NG料
        /// </summary>
        public bool IsNg = false;
        /// <summary>
        /// 入料NG消息
        /// </summary>
        public string NgMsg = "";
        /// <summary>
        /// 物料编码
        /// </summary>
        public string PN { get; set; }
        /// <summary>
        /// 数量
        /// </summary>
        public int QTY { get; set; } = 0;
        /// <summary>
        /// 厂家代码
        /// </summary>
        public string FC { get; set; }
        /// <summary>
        /// 唯一序列号
        /// </summary>
        public string RI { get; set; }
        /// <summary>
        /// 批次号
        /// </summary>
        public string Batch { get; set; }

        public int HeightPos = 0;
        public LabelContent clone()
        {
            LabelContent dstobject;
            using (MemoryStream mStream = new MemoryStream())
            {
                BinaryFormatter bf = new BinaryFormatter();
                bf.Serialize(mStream, this);
                mStream.Seek(0, SeekOrigin.Begin);//指定当前流的位置为流的开头。
                dstobject = (LabelContent)bf.Deserialize(mStream);
                mStream.Close();
            }
            return dstobject;
        }

        public string ToStr()
        {
            if (IsNg)
            {
                return "[" + WareCode + "], [" + PlateW + "x" + PlateH + "]";
            }
            else
            {

                return "[" + WareCode + "], [" + PlateW + "x" + PlateH + "]";
            }
        }


    }
}