BOX_Config.cs 1.0 KB
using log4net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;

namespace SmartShelf.LoadCSVLibrary
{
    /// <summary>
    ///  手动料仓配置
    /// </summary>
    public class BOX_Config : StoreConfig
    {
        public BOX_Config()
            : base()
        {
        }
        public BOX_Config(int id, string cid, string type, string filepath)
            : base(id, cid, type, filepath)
        {
        }

        /// <summary>
        /// 端口号
        /// </summary>
        [ConfigProAttribute("Door_PortName")]
        public string Door_PortName { get; set; }

        /// <summary>
        ///  PRO,IOIP,AIO_IP,192.168.200.11
        /// </summary>
        [ConfigProAttribute("AIO_IP")]
        public string AIO_IP { get; set; }


        /// <summary>
        ///   PRO 使用哪种IP模块    UseAIOBOX	1
        /// </summary>
        [ConfigProAttribute("UseAIOBOX")]
        public int UseAIOBOX { get; set; }
    }
}