You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
552 B
25 lines
552 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.Charges
|
|
{
|
|
public class ChargeAndChargeBackSettlementRequestDto
|
|
{
|
|
/// <summary>
|
|
/// 收费员ID 集合
|
|
/// </summary>
|
|
public List<Guid> UserIds { get; set; } = new List<Guid>();
|
|
|
|
/// <summary>
|
|
/// 开始日期
|
|
/// </summary>
|
|
public string StartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
public string EndDate { get; set; }
|
|
}
|
|
|
|
}
|