新增销售订单获取收款金额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,18 @@

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GZ_LTHPilot_ORDER.Models.VO
{
public class SaleExecuteOut
{
public string FSALEORGNAME { get; set; }
public string FBILLNO { get; set; }
public string FDate { get; set; }
public string FALLMATCHAMOUNT { get; set; }
}
}