26 lines
514 B
C#
26 lines
514 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Complaint.Domain.Dto
|
|
{
|
|
internal class CrmUserInfoDto
|
|
{
|
|
public int? Pkid { get; set; }
|
|
|
|
public int? Eid { get; set; }
|
|
|
|
public string? Uname { get; set; }
|
|
|
|
public int? DeptId { get; set; }
|
|
|
|
public string? DeptName { get; set; }
|
|
|
|
public int? GroupId { get; set; }
|
|
|
|
public string? GroupName { get; set; }
|
|
}
|
|
}
|