ComplianceServer/oldcode/Model/MAP/QueryUserComboDto.cs

28 lines
753 B
C#

namespace WX.CRM.Model.MAP
{
public class QueryUserComboDto
{
public QueryUserComboDto()
{
}
public QueryUserComboDto(decimal? companyId, string deptId, string groupIds, decimal? userId)
{
this.companyId = companyId;
this.deptId = deptId;
this.groupIds = groupIds;
this.userId = userId;
}
public decimal? companyId { get; set; }
public string deptId { get; set; }
public string groupIds { get; set; }
public decimal? userId { get; set; }
/// <summary>
/// 是否回访
/// </summary>
public int? isCallBack { get; set; }
public string OfficialNumber { get; set; }
}
}