using System.ComponentModel.DataAnnotations;
namespace PBS.Dto
{
///
/// 场所
///
public class AddPlaceInput
{
///
/// 行政区域标识
///
[Required, Range(1, long.MaxValue, ErrorMessage ="RegionID 必须大于0")]
public long RegionID { get; set; }
///
/// 名称
///
[Required]
public string Name { get; set; }
///
/// 场所类型
///
public int PlaceType { get; set; }
///
/// 场所信息
///
public string PlaceInfo { get; set; }
///
/// 地址
///
public string Address { get; set; }
///
/// 参数
///
public Dictionary Paras { get; set; }
///
/// 标签
///
public List Flags { get; set; }
///
/// 标志
///
public string TagName { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}