using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class StationSpecialPropertyMappingDto
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public StationSpecialPropertyMappingDto() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public StationSpecialPropertyMappingDto(Model.SpecialPropertyMapping rhs)
|
{
|
this.ID = rhs.ID;
|
this.CorpID = rhs.CorpID;
|
this.PropertyID = rhs.PropertyID;
|
this.CatalogID = rhs.CatalogID;
|
}
|
|
/// <summary>
|
/// 标识
|
/// </summary>
|
public long ID { get; set; }
|
|
/// <summary>
|
/// 客户标识
|
/// </summary>
|
public long CorpID { get; set; }
|
|
/// <summary>
|
/// 属性标识
|
/// </summary>
|
public long PropertyID { get; set; }
|
|
/// <summary>
|
/// 类别标识
|
/// </summary>
|
public long CatalogID { get; set; }
|
|
}
|
}
|