using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class SelectStationSpecialPropertyMappingInput
|
{
|
/// <summary>
|
/// 客户标识
|
/// </summary>
|
public long CorpID { get; set; }
|
|
/// <summary>
|
/// 属性标识
|
/// </summary>
|
public long PropertyID { get; set; }
|
|
/// <summary>
|
/// 类别标识
|
/// </summary>
|
public long CatalogID { get; set; }
|
|
/// <summary>
|
/// 是否选择
|
/// </summary>
|
public bool Selected { get; set; }
|
}
|
}
|