29 lines
597 B
C#
29 lines
597 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YLErp.Models;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
/// <summary>
|
|
/// 预付金计算请求参数
|
|
/// </summary>
|
|
public class CalculateMarginRequest
|
|
{
|
|
public string currentDate { get; set; }
|
|
public string preSettleDate { get; set; }
|
|
public IEnumerable<int> clientIds { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 预付金计算请求返回
|
|
/// </summary>
|
|
public class CalculateMarginResponse: ApiResponse
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|