using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Domain.Dto.CRM
{
public class RepeatDeptmentDto
{
///
/// 成交部门
///
public List DealDepts { get; set; } = new List();
///
/// 重复部门
///
public List RepeatDepts { get; set; } = new List();
}
public class RepeatDeptments
{
public int? deptid { get; set; }
public string deptname { get; set; }
}
}