32 lines
840 B
C#
32 lines
840 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Domain.Dto.Customer
|
|
{
|
|
public class GroupOrDeptIdDto
|
|
{
|
|
public string? DeptId { get; set; }
|
|
public string? GroupIds { get; set; }
|
|
}
|
|
|
|
public class UserDeptNameInfo
|
|
{
|
|
public decimal? Pkid { get; set; }
|
|
public decimal? Eid { get; set; }
|
|
public string? Uname { get; set; }
|
|
public decimal? DeptId { get; set; }
|
|
public string? DeptName { get; set; }
|
|
public decimal? GroupId { get; set; }
|
|
public string? GroupName { get; set; }
|
|
}
|
|
|
|
public class BusinessLineInfo
|
|
{
|
|
public bool isLine { get; set; }
|
|
public decimal deptId { get; set; }
|
|
public List<decimal> eidInfo { get; set; }
|
|
}
|
|
} |