namespace Model.Customization._14HJ
{
public class IOrganizationitem
{
///
/// 机构唯一编码
///
public string tenantCode { get; set; }
///
/// 上级机构编码,如果该机构为顶级机构则为-1
///
public string parentCode { get; set; }
///
/// 机构名称
///
public string tenantName { get; set; }
///
/// 管理员昵称
///
public string nickName { get; set; }
///
/// 管理员手机号码
///
public string phone { get; set; }
///
/// 用户唯一编码
///
public string userCode { get; set; }
///
/// 请求序列号,每次请求都不同
///
public string serialNo { get; set; }
}
}