crm.core/code/Crm.Core.Domain/Dto/CRM/RepeatDeptmentDto.cs

27 lines
663 B
C#

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
{
/// <summary>
/// 成交部门
/// </summary>
public List<RepeatDeptments> DealDepts { get; set; } = new List<RepeatDeptments>();
/// <summary>
/// 重复部门
/// </summary>
public List<RepeatDeptments> RepeatDepts { get; set; } = new List<RepeatDeptments>();
}
public class RepeatDeptments
{
public int? deptid { get; set; }
public string deptname { get; set; }
}
}