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