新增销售订单获取收款金额API

This commit is contained in:
2025-07-30 16:50:24 +08:00
parent b83a4c0773
commit 72eebf5edb
14 changed files with 435 additions and 49 deletions

View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GZ_LTHPilot_ORDER.Models.K3Request
{
public class ReportDataParam
{
public bool ReturnJsonData { get; set; }
public string FieldKeys { get; set; }
public string SchemeId { get; set; }
public int StartRow { get; set; }
public int Limit { get; set; }
public bool IsVerifyBaseDataField { get; set; }
public object[] FilterString { get; set; }
public Model Model { get; set; }
}
public class Model
{
public string FSaleOrgList { get; set; }
public DateTime FSoFromDate { get; set; }
public DateTime FSoToDate { get; set; }
public string FSaleOFrom { get; set; }
public string FSaleOTo { get; set; }
public string FFormCloseStatus { get; set; }
public string FFormStatus { get; set; }
public string FPriceFrom { get; set; }
public string FBusCloseStatus { get; set; }
public bool FMergingSOHeader { get; set; }
public bool FIncludedUnfilledOrders { get; set; }
public bool FIsRecWithMat { get; set; }
public string FSuite { get; set; }
public string FSetAccountType { get; set; }
public bool FIsGroup { get; set; }
public bool FIncludedFree { get; set; }
}
}