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.

96 lines
2.5 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
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 CheckBillAutoRes
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 自动对账编号 可以根据规则生成
/// </summary>
public string AutoBillNo { get; set; }
/// <summary>
/// 对账单名称
/// </summary>
public string BillName { get; set; }
/// <summary>
/// 对账日期
/// </summary>
public DateTime? CheckDate { get; set; } = DateTime.Now;
/// <summary>
/// 业务类型 0 全部 1.海运出口
/// </summary>
public int BusinessType { get; set; }
/// <summary>
/// 对账方式 1 Excel导入 2.区间统计
/// </summary>
public int CheckType { get; set; }
/// <summary>
/// 起始时间
/// </summary>
public DateTime? StartTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public DateTime? EndTime { 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>
/// 费用范围
/// </summary>
public int FeeScope { get; set; }
/// <summary>
/// 结算人Id
/// </summary>
public long? SettlerId { get; set; }
/// <summary>
/// 结算人名称
/// </summary>
public string? SettlerName { get; set; }
/// <summary>
/// 结算日期
/// </summary>
public DateTime? SettlementTime { get; set; }
/// <summary>
/// 账单编号 可以根据规则生成
/// </summary>
public string BillNo { get; set; }
/// <summary>
/// 对账人
/// </summary>
public string? CheckUserName { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Note { get; set; }
}
}