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? isCallBack { get; set; } public string OfficialNumber { get; set; } } }