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 OrganizationInsertDto
{
///
/// 名称
///
public string name { get; set; }
///
/// 描述
///
public string remark { get; set; }
///
/// 机器人助手
///
public int wechatRobotId { get; set; }
///
/// 负责人ID
///
public int leader { 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; }
}
}