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; } /// /// 部门Id /// public int? departmentid { get; set; } /// /// 工号 /// 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; } } }