using Syc.Basic.Web.WMS.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Syc.Basic.Web.WMS.Dtos.Organization
{
public class OrganizationAllOut
{
public int Id { get; set; }
///
/// 组织编号
///
public string Code { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 描述
///
public string Remark { get; set; }
///
/// 负责人
///
public string Leader { get; set; }
///
/// 负责人ID
///
public int LeaderId { get; set; }
public string wechatRobotName { get; set; }
public int wechatRobotId { get; set; }
///
/// 状态 0:正常 1:停用
///
public bool Status { get; set; }
///
/// 类型 0:公司 1:部门
///
public OrganizationType Type { get; set; }
///
/// 上级ID
///
public int? parentId { get; set; }
///
/// 排序
///
public int Sort { get; set; }
}
}