南京云海wcs代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.0 KiB

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; }
}
}