You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
750 B
30 lines
750 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.FromERP.Model
|
|
{
|
|
public class QuerySOInputDto
|
|
{
|
|
/// <summary>
|
|
/// 销售订单编码
|
|
/// </summary>
|
|
public string SOCode { get; set; }
|
|
/// <summary>
|
|
/// 报价单号
|
|
/// </summary>
|
|
public string SQCode { get; set; }
|
|
/// <summary>
|
|
/// 报价单行号
|
|
/// </summary>
|
|
public string SQLineNo { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime BeginTime { get; set; }
|
|
public DateTime EndTime { get; set; }
|
|
public string CustomerId { get; set; }
|
|
}
|
|
}
|