using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Dtos.System
{
///
/// 员工表查询dto
///
public class UserDto : DtoBase
{
///
/// 公司Id
///
public int CompanyId { get; set; }
///
/// 部门Id
///
public int DepId { get;set; }
}
}