| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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
- {
- /// <summary>
- /// 机构ID
- /// </summary>
- [PropertyDisc("AreaId")]
- public int areaid { get; set; }
- /// <summary>
- /// 机构名称
- /// </summary>
- [PropertyDisc("AREANAME")]
- public string AreaName { get; set; }
- /// <summary>
- /// 运营中心类型
- /// </summary>
- [PropertyDisc("operationroles")]
- public int OperationRoles { get; set; }
- }
- }
|