using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.AutoBom.Entity.Func
{
public class OrgTreeEntity
{
///
/// 机构GUID
///
public string id { get; set; }
///
/// 机构名称
///
public string name { get; set; }
///
/// 上级机构GUID
///
public string pId { get; set; }
///
/// 是否有发布权限
///
public string isPublic { get; set; }
///
/// 机构编码
///
public string code { get; set; }
///
/// 机构类型
///
public string type { get; set; }
///
/// 排序
///
public string order { get; set; }
///
/// 组织机构标识
///
public string orgflag { get; set; }
///
/// 机构当前状态
///
public string orgState { get; set; }
///
/// 机构特征(用于获取基于特征部门的人员,如:OMS采购员 WMS包装人员等)
/// 具体取字段-机构特征(采购/销售/包装/分拣等)
///
public string orgFeature { get; set; }
///
/// 组织机构价格等级(由原先的机构扩展表引入)
///
public string orgPriceRank { get; set; }
///
/// 是否选中
///
public bool isChecked { get; set; }
//public bool checked{ get; set; }
}
}