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