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 OrganizationEditDto
{
///
/// 组织编号
///
public string Code { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 负责人ID
///
public int? Leader { get; set; }
///
/// 状态 0:正常 1:停用
///
public bool Status { get; set; }
public int wechatRobotId { get; set; }
///
/// 类型 0:公司 1:部门
///
public OrganizationType Type { get; set; }
///
/// 上级ID
///
public int? Pid { get; set; }
///
/// 排序
///
public int Order { get; set; }
}
}