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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.Check.Dtos
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 对账信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CheckBillInfoRes
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BillNo { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 对账单名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BillName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收付类型(收、付)0 全部 1应收 2 应付
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int BillType { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 对账客户Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long CustomerId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 对账客户名称 t_info_client CUSTNAME
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CustomerName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:账单状态 是否锁定
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool? IsLocking { get; set; } = false;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:是否不含税
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool? IsNoTax { get; set; } = false;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 对账模板Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long CheckBillTemplateId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 对账模板名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CheckBillTemplateName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|