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.

51 lines
1.2 KiB
C#

using SqlSugar;
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 BLIssueCustomerDto
{
/// <summary>
/// 结费类型
/// </summary>
public string StlType { get; set; }
/// <summary>
/// 结费类型名称
/// </summary>
public string StlTypeName { get; set; }
/// <summary>
/// 结算日期
/// </summary>
public Nullable<DateTime> StlDate { get; set; }
/// <summary>
/// 信用额度
/// </summary>
public Nullable<decimal> AllowAmount { get; set; }
/// <summary>
/// USD未收
/// </summary>
public Nullable<decimal> NoPayAmountUSD { get; set; }
/// <summary>
/// RMB未收
/// </summary>
public Nullable<decimal> NoPayAmountCNY { get; set; }
/// <summary>
/// 未收合计
/// </summary>
public Nullable<decimal> NoPayAmountTotal { get; set; }
}
}