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.
50 lines
990 B
C#
50 lines
990 B
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 CustomerStlRes
|
|
{
|
|
/// <summary>
|
|
/// Desc:结算方式
|
|
/// </summary>
|
|
public string StlName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Desc:月结算时间
|
|
/// </summary>
|
|
public DateTime? StlDate { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 客户结算信息请求
|
|
/// </summary>
|
|
public class CustomerStlReq
|
|
{
|
|
/// <summary>
|
|
/// 委托单位Id
|
|
/// </summary>
|
|
public long CustomerId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 开船日期
|
|
/// </summary>
|
|
public DateTime? ETD { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 揽货人Id
|
|
/// </summary>
|
|
public long SaleId { get; set; }
|
|
}
|
|
}
|