using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.FeeBillRecvService.Dtos
{
public class FeeBillReadDto
{
///
/// 主键
///
public string GID { get; set; }
///
/// 提单号
///
public string BookingBill { get; set; }
///
/// 发票号
///
public string InvoiceNumber { get; set; }
///
/// 费用明细
///
public List DetailList { get; set; }
}
public class FeeBillReadDetailDto
{
///
/// 主键
///
public string GID { get; set; }
///
/// 费用名称
///
public string CostName { get; set; }
///
/// 单价
///
public Nullable UnitPrice { get; set; }
///
/// 数量
///
public Nullable Quantity { get; set; }
///
/// 总金额
///
public Nullable Amount { get; set; }
///
/// 计费标准 BILL-按票
///
public string FeeStandard { get; set; }
///
/// 标题
///
public string Tips { get; set; }
///
/// 客户费用代码
///
public string CustSysCode { get; set; }
///
/// 客户费用名称
///
public string CustSysName { get; set; }
///
/// 币别
///
public string CustCurrency { get; set; }
///
/// 结算对象
///
public string CustSettleFor { get; set; }
///
/// 客户计费类型
///
public string CustFeeStandard { get; set; }
}
}