26 lines
762 B
C#
26 lines
762 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace cn.sancainet.Resident.health.register.Entity.XiTong
|
|
{
|
|
public class sys_org
|
|
{
|
|
public string ID { get; set; }
|
|
public string OrganName { get; set; }
|
|
public string OrganCode { get; set; }
|
|
public string ParentId { get; set; }
|
|
public string SortName { get; set; }
|
|
public byte OrganLevel { get; set; }
|
|
public string Remark { get; set; }
|
|
public string OrgNum { get; set; }
|
|
public int OrderNum { get; set; }
|
|
public string AreaID { get; set; }
|
|
public byte IsDel { get; set; }
|
|
public string Creator { get; set; }
|
|
public string CreateTime { get; set; }
|
|
|
|
}
|
|
}
|