22 lines
440 B
C#
22 lines
440 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.GatherItem
|
|||
|
|
{
|
|||
|
|
public class GatherItemInfo
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 数据类型
|
|||
|
|
/// </summary>
|
|||
|
|
public string DataType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 采集项编码
|
|||
|
|
/// </summary>
|
|||
|
|
public string ItemCode { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|