using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class AddStationSpecialPropertyValueInput
|
{
|
/// <summary>
|
/// 客户标识
|
/// </summary>
|
public long CorpID { get; set; }
|
|
/// <summary>
|
/// 泵站标识
|
/// </summary>
|
public long StationID { get; set; }
|
|
/// <summary>
|
/// 属性标识
|
/// </summary>
|
public long PropertyID { get; set; }
|
|
/// <summary>
|
/// 属性值
|
/// </summary>
|
public string PropertyValue { get; set; }
|
}
|
}
|