You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
637 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
/// <summary>
///
/// </summary>
public class DJYChargeFeeRequestDto
{
/// <summary>
/// 扣费业务类型
/// </summary>
public ChargeFeeBSTypeEnum BSType { get; set; }
/// <summary>
/// 发送类型
/// </summary>
public ChargeFeeSendTypeEnum SendType { get; set; }
/// <summary>
/// 业务ID
/// </summary>
public List<long> BusinessIdList { get; set; }
}
}