TG.WXCRM.V4/BLL/Application/UserComBox/UserComBoxDto.cs

14 lines
405 B
C#

namespace WX.CRM.BLL.Application.UserComBox
{
public class UserComBoDto
{
public decimal UserId { get; set; }
public decimal Eid { get; set; }
public string UName { get; set; }
public decimal IsDimiss { get; set; }
public decimal? CompanyId { get; set; }
public decimal? DeptId { get; set; }
public decimal? GroupId { get; set; }
}
}