Files
BarCode-Api/src/BarCode.Web.Core/Dto/Login/DeptInfoDto.cs
2025-04-30 17:01:05 +08:00

18 lines
326 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BarCode.Web.Core.Dto.Login
{
public class DeptInfoDto
{
public int Id { get; set; }
public string DeptCode { get; set; }
public string DeptName { get; set; }
public int? ManagerId { get; set; }
}
}