crm.core/code/Crm.Core.MsgTool.Domain/Dto/UserGroupDto.cs

54 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.MsgTool.Domain.Dto
{
/// <summary>
/// 人群包信息
/// </summary>
public class UserGroupDto
{
/// <summary>
/// 人群包id
/// </summary>
public int Id { get; set; }
/// <summary>
/// 名称
/// </summary>
public string? Name { get; set; }
/// <summary>
/// 描述
/// </summary>
public string? Description { get; set; }
/// <summary>
/// 共享范围
/// 0全局
/// 1部门
/// 2个人
/// </summary>
public UserGroupShareWay? ShareWay { get; set; }
/// <summary>
/// 用户数量
/// </summary>
public int UserCount { get; set; }
/// <summary>
/// 客户数量
/// </summary>
public int CustomerCount { get; set; }
}
public class BusinessMapDto
{
public decimal? id { get; set; }
public string? title { get; set; }
public decimal? rootId { get; set; }
}
}