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.

35 lines
806 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 BLOverdueFeeDto
{
/// <summary>
/// RMB应收欠费(超期)
/// </summary>
public Nullable<decimal> NoPayAmountCNY { get; set; }
/// <summary>
/// USD应收欠费(超期)
/// </summary>
public Nullable<decimal> NoPayAmountUSD { get; set; }
/// <summary>
/// 合计应收欠费(超期)
/// </summary>
public Nullable<decimal> NoPayAmountTotal { get; set; }
/// <summary>
/// 描述
/// </summary>
public string Description { get; set; }
}
}