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 LanguageExt;
|
|
|
|
|
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 CheckBillReq
|
|
|
|
|
{
|
|
|
|
|
/// <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>
|
|
|
|
|
/// 业务Ids
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<long> BusinessIds { get; set; }
|
|
|
|
|
|
|
|
|
|
///// <summary>
|
|
|
|
|
///// 费用记录Ids
|
|
|
|
|
///// </summary>
|
|
|
|
|
//public List<long> FeeRecordIds { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|