using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
///
///
public class SpecialPropertyValueSetter
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 关联类型
///
public string ObjectType { get; set; }
///
/// 关联标识
///
public long ObjectID { get; set; }
///
/// 属性标识
///
public long PropertyID { get; set; }
///
/// 属性值
///
public string PropertyValue { get; set; }
}
}