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.
44 lines
921 B
C#
44 lines
921 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 DJYChargeFeeResultDto
|
|
{
|
|
/// <summary>
|
|
/// 执行时间
|
|
/// </summary>
|
|
public DateTime ExcuteDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行结果明细
|
|
/// </summary>
|
|
public List<DJYChargeFeeResultDetailDto> ExcuteDetail { get; set; }
|
|
}
|
|
|
|
public class DJYChargeFeeResultDetailDto
|
|
{
|
|
/// <summary>
|
|
/// 业务主键
|
|
/// </summary>
|
|
public long BillId { get; set;}
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public string Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 消息
|
|
/// </summary>
|
|
public string Message { get; set; }
|
|
}
|
|
|
|
}
|