using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Dtos.Financial
{
///
/// 团组提成 分页 Dto
///
public class GroupCommissionDto : DtoBase
{
///
/// 出访开始时间
/// eg:2023-01-01
///
public string? VisitStartTime { get; set; }
///
/// 出访结束时间
/// eg:2023-12-31
///
public string? VisitEndTime { get; set; }
///
/// 员工Id
/// eg:-1 所有人 or UserId
///
public int UserId { get; set; }
///
/// 团组名称
///
public string? GroupName { get; set; }
}
}