TG.WXCRM.V4/Model/MAP/QueryUserComboDto.cs

45 lines
1.2 KiB
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; }
public int? IsBound { get; set; }
/// <summary>
/// 部门Id
/// </summary>
public int? departmentid { get; set; }
/// <summary>
/// 工号
/// </summary>
public int? eid { get; set; }
public int? txt_departmentid { get; set; }
public string txt_deptIds { get; set; }
public decimal? txt_companyId { get; set; }
public string txt_deptId { get; set; }
public string txt_groupIds { get; set; }
public int? txt_userId { get; set; }
public int? txt_eid { get; set; }
}
}