using System;
using System.Collections.Generic;
using System.Text;

namespace Model
{
    public class MDeviceKind
    {

        int _deviceKindIndex;
        /// <summary>
        /// 设备类型索引
        /// </summary>
        public int DeviceKindIndex
        {
            get { return _deviceKindIndex; }
            set { _deviceKindIndex = value; }
        }
        int _goodsMoveKindIndex;
        /// <summary>
        /// 物品移动类型
        /// </summary>
        public int GoodsMoveKindIndex
        {
            get { return _goodsMoveKindIndex; }
            set { _goodsMoveKindIndex = value; }
        }
        string _deviceKindName;
        /// <summary>
        /// 设备类型名称
        /// </summary>
        public string DeviceKindName
        {
            get { return _deviceKindName; }
            set { _deviceKindName = value; }
        }
        /// <summary>
        /// 设备类型编码
        /// </summary>
        public string DeviceKindCode { get; set; }
    }
}