using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//----------------------------------------------------------------
//Module Name: $safeprojectname$
//Purpose:
//CopyRight: Muchinfo
//History:
//----------------------------------------------------------------
//DateTime 2017/4/7 17:59:50
//Author
//Description Create
//----------------------------------------------------------------
using Muchinfo.MTPClient.Data.Helper;
namespace Muchinfo.MTPClient.Data.Model.Account
{
public class AreaModel
{
///
/// 机构ID
///
[PropertyDisc("AreaId")]
public int areaid { get; set; }
///
/// 机构名称
///
[PropertyDisc("AREANAME")]
public string AreaName { get; set; }
///
/// 运营中心类型
///
[PropertyDisc("operationroles")]
public int OperationRoles { get; set; }
}
}