using OASystem.Domain.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.ViewModels.Resource
{
public class Res_LocalGuideData_ListItemView
{
///
/// Id
///
public int Id { get; set; }
///
/// 单位区域
///
[Encrypted]
public string UnitArea { get; set; }
///
/// 单位名称
///
[Encrypted]
public string UnitName { get; set; }
///
/// 联系人
///
[Encrypted]
public string Contact { get; set; }
///
/// 联系电话
///
[Encrypted]
public string ContactTel { get; set; }
///
/// 评分
///
public int Score { get; set; }
///
/// 更新时间
///
public string LastUpdateStr { get; set; }
}
}