34 lines
728 B
C#
34 lines
728 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Dto
|
|
{
|
|
public class InneruserDto
|
|
{
|
|
public InneruserDto(int eId, string name, int status)
|
|
{
|
|
EId = eId;
|
|
Name = name;
|
|
Status = status;
|
|
}
|
|
|
|
public int EId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public int Status { get; set; }
|
|
}
|
|
|
|
public class InnerUserDeptDto
|
|
{
|
|
public int EId { get; set; }
|
|
public string Name { get; set; }
|
|
public int Status { get; set; }
|
|
public string DeptId { get; set; }
|
|
public string DeptName { get; set; }
|
|
}
|
|
}
|