using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace ZmajService.Models.UserSync { public class JJGisCompanyModel { /// /// 组织GUID /// public string BuGuid { get; set; } /// /// 组织简称 /// public string BuName { get; set; } /// /// 父级GUID /// public string ParentGuid { get; set; } /// /// 父级名称 /// public string ParentName { get; set; } /// /// 创建时间 /// public string CreatedDate { get; set; } /// /// 创建人 /// public string CreatedBy { get; set; } /// /// 是否为公司 /// public int IsCompany { get; set; } /// /// 组织类型 /// public string BuType { get; set; } /// /// 所属公司 /// public string CompanyGuid { get; set; } } }